DFSORT Z/OS R1.10....
I have a two step job with each step executing DFSORT using the same SORTIN file in each with different SORTOUT files.
The SYSIN cards for the first DFSORT step is as follows:
INREC FIELDS=(1,800)
SORT FIELDS=(1,800,CH,A)
SUM FIELDS=NONE
OUTFIL FNAMES=SORTOUT,
IFTHEN=(WHEN=(422,1,CH,EQ,C'Y'),
BUILD=(1,148,C'REG VIOL ',149,21,179,622))
The SYSIN cards for the second DFSORT is as follows:
SORT FIELDS=COPY
OUTFIL INCLUDE=(841,1,CH,EQ,C'Y'),FNAMES=SORTOUT,
OUTREC=(801,300)
How can this job be merged into a single DFSORT pass? Thanks.