Anand_R Intermediate
Joined: 24 Dec 2002 Posts: 189 Topics: 60
|
Posted: Tue Nov 14, 2006 5:18 pm Post subject: IGZ0075S error in Vsam file processing |
|
|
Hi
I am getting IGZ0075S error while using VSAM file that I have created in the prior step. This error was happened because of incosisitenceis in Max Record Lenght between the file and the program that is using this file. But the hitch is I did not see any difference in maxium record length. Here are the vsam file base cluster definition
Code: |
' DEFINE CLUSTER - ',
' (NAME(&ACCT1..TBV.PFMLV05.&CRCYC) - ',
' INDEXED - ',
' TO(2021365) - ',
' CYL(1 1) - ',
' SHAREOPTIONS(1,3) - ',
' NOERASE - ',
' SPEED - ',
' FREESPACE(5 5) - ',
' KEYS(12 0) - ',
' RECORDSIZE (30 30) - ',
' IMBED ) - ',
' DATA - ',
' (NAME(&ACCT1..TBV.PFMLV05.&CRCYC..DATA))- ',
' INDEX - ',
' (NAME(&ACCT1..TBV.PFMLV05.&CRCYC..INDEX)) ')
|
Here is the definiton of file in the program
Code: |
FD CUM-PREM-FILE IS EXTERNAL
RECORD CONTAINS 30 CHARACTERS
DATA RECORD IS CUM-PREM-FILE-RECORD.
01 CUM-PREM-FILE-RECORD.
05 CP-POLICY-NUMBER PIC X(12) .
05 CP-CUMULATIVE-PREM-PAID PIC 9(07)V99.
05 CP-GROSS-ANN-PREMIUM PIC 9(07)V99.
|
Please help me in solving this issue. I tried all means but no result. Please let me know if you need any further info
Thanks |
|