Hi,
I have multiple input files and I want to copy the data to multiple output files based on some conditions. I dont want to use the same sort control member and write 10 steps in the JCL. Is there a way to accomplish this in a single step? I am using SYNCSORT FOR Z/OS 1.3.0.3R. Please see an example below.
SORT FIELDS=(1,9,CH,A)
OUTFIL FNAMES=SORTOV1B,
INCLUDE=(47,1,CH,EQ,C'Y')
OUTFIL FNAMES=SORTOV1C,
INCLUDE=(48,1,CH,EQ,C'Y')
OUTFIL FNAMES=SORTOV1K,
INCLUDE=(49,1,CH,EQ,C'Y')
I have to execute the above sort for 10 different input files and they all should be output to 30 different files. Can i concatenate the 10 input files and write to 30 output files using 1 sort card?
Thanks,
Rajakumaran