Hi all,
I'm testing an Enterprise Cobol program with an variable length input file. Its register is defined in File Section as PIC X(3600), and the file has physical lrec of 3604.
When I submit the job I obtain a file status 4 (error with the lrec).
I think you should know this program was written and compiled as Cobol, but now the client is migrating to Enterprise Cobol. Can this be the problem?
I post the FD
FD MYFILE RECORDING V
LABEL RECORD STANDARD
BLOCK CONTAINS 0 RECORDS.
01 REG-MYFILE PIC X(3600).
These are the file attributes: Dsorg=PS Recfm=VB Lrecl=3604
Thank you in advance for all your time and help.