This shows an LRECL of 150, but value for the LINESIZE option parameter in the listing shows 204:
LINESIZ(204)
So, this is a valid compilation error based on the CA Easytrieve documentation.
Pages 90-91 have the following information from the Language Reference Guide:
[LINESIZE line-length]
Code the LINESIZE parameter to specify the maximum number of data characters that can be printed on a line. Line-length must be an unsigned integer from 1 to 32767.
Line-length must be at least one less than the length of the data portion of the file's logical record.
Please see the following link under DocOps for related content for the REPORT statement and therefore the LINESIZE parameter on the REPORT statement:
https://docops.ca.com/ca-easytrieve/11-6/en/language-reference/statements/report-statementThe resolution is to include on the REPORT statement code the LINESIZE parameter with the value as 149, which will override the 204 in the options file..