Error while PARSING the records



Support for NetApp SyncSort for z/OS, Visual SyncSort, SYNCINIT, SYNCLIST and SYNCTOOL

Error while PARSING the records

Postby gadde9 » Fri Dec 27, 2019 12:42 pm

My input data set has data in below format, and file is a pipe delimited file with a '.' at the end
AAAAAAAAAA|BBBBB|CCCCCCC|||DDDDD|EEEE EEEEEE|FF|GGGGGG|HH|IIIII|JJJJJJJJJJJ|KKKKKKKKKK|LLLLLLLL|||MM|N|||OOOOOO.
 


I want to write the below fields to output file,

AAAAAAAAAA,JJJJJJJJJJJ,OOOOOO


I have written below sort step, but I'm getting the error as,

WER813I  INSTALLATION OPTIONS IN MFX LOAD LIBRARY WILL BE USED
WER268A  OUTREC STATEMENT  : SYNTAX ERROR
WER449I  SYNCSORT GLOBAL DSM SUBSYSTEM ACTIVE


Can you let me know what is the issue here?

//***********************************************************
//PARSSTP  EXEC PGM=SORT
//SORTWK03 DD UNIT=SYSDA,SPACE=(CYL,150,,CONTIG)
//SORTWK02 DD UNIT=SYSDA,SPACE=(CYL,150,,CONTIG)
//SORTWK01 DD UNIT=SYSDA,SPACE=(CYL,150,,CONTIG)
//*
//SORTIN   DD DSN=TEST.YY.XXX.ZZZXXX,DISP=SHR
//*
//SORTOUT  DD DSN=TEST.YY.XXX.ZZZXXX.OUTPUT,
//            UNIT=DISK,SPACE=(CYL,(5,5),RLSE),
//             DISP=(NEW,CATLG,DELETE),
//            DCB=(RECFM=FB,LRECL=256,BLKSIZE=0)
//*
//LISTOUT  DD SYSOUT=*,DCB=(RECFM=FA,LRECL=80,BLKSIZE=80)
//SYSOUT   DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSIN    DD *
  SORT FIELDS=COPY
  OUTREC PARSE=(%01=(ENDBEFR=C'|',FIXLEN=10),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %12=(ENDBEFR=C'|',FIXLEN=11),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %21=(ENDBEFR=C'.',FIXLEN=6),
       BUILD=(%01,C',',12:%12,'C',24:%21,227X)
/*
gadde9
 
Posts: 8
Joined: Thu Jul 19, 2018 8:54 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Error while PARSING the records

Postby NicC » Fri Dec 27, 2019 3:33 pm

Please use the code tags to present code, data, anything requiring a fixed pitch font.

The error messages begin WER which means that you are using Syncsort - topic moved

Try referring to the syntax for OUTREC - is PARSE compatible with BUILD? I would do the parsing on the input phase (INREC) not the output phase.
The problem I have is that people can explain things quickly but I can only comprehend slowly.
Regards
Nic
NicC
Global moderator
 
Posts: 3025
Joined: Sun Jul 04, 2010 12:13 am
Location: Pushing up the daisies (almost)
Has thanked: 4 times
Been thanked: 136 times

Re: Error while PARSING the records

Postby gadde9 » Fri Dec 27, 2019 5:54 pm

Thanks for the reply Nic.
gadde9
 
Posts: 8
Joined: Thu Jul 19, 2018 8:54 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Error while PARSING the records

Postby sergeyken » Fri Dec 27, 2019 6:07 pm

gadde9 wrote:Can you let me know what is the issue here?

//SYSIN    DD *
  SORT FIELDS=COPY
  OUTREC PARSE=(%01=(ENDBEFR=C'|',FIXLEN=10),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %12=(ENDBEFR=C'|',FIXLEN=11),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %=(ENDBEFR=C'|'),
                %21=(ENDBEFR=C'.',FIXLEN=6),
       BUILD=(%01,C',',12:%12,'C',24:%21,227X)
/*

If you only tried just to count open/close brackets in you statement, you'd find the error immediately.

Can you count pairing brackets?
Javas and Pythons come and go, but JCL and SORT stay forever.
User avatar
sergeyken
 
Posts: 409
Joined: Wed Jul 24, 2019 10:12 pm
Has thanked: 6 times
Been thanked: 40 times


Return to Syncsort/Synctool

 


  • Related topics
    Replies
    Views
    Last post