I am using SS option with INCLUDE to search a VB file but ending in getting the below error:
WER250A INCLUDE/OMIT FIELD BEYOND RECORD
The LRECL of file is 1378 and RECFM is VB. From the error message I get that what I am trying to search is beyond the record but this starts from 10th position of 6 character length !
//SYSIN DD *
SORT FIELDS=COPY
INCLUDE COND=(1,1378,SS,EQ,C'ABCDEF,BCDEFG,CDEFGH,DEFGHI,EFGHIJ')
SORT FIELDS=COPY
INCLUDE COND=(1,1378,SS,EQ,C'ABCDEF,BCDEFG,CDEFGH,DEFGHI,EFGHIJ')
I tried it with 5,1378 also but got the same error. Please correct me.
Thanks.