with out sorting how to copy records from one file to
another file using jcl.Mean I have one input file in which
the record are like 1,6,5,4,2,3(for example) and i want to
copy to output file from top to bottom(without sorting) like
3,2,4,5,6,1.so I want the JCL for this.cna any one can
answers?
Answer / ramesh
Please find below sort card for same
//SYSIN DD *
INREC FIELDS=(1:1,10,11:SEQNUM,8,ZD)
SORT FIELDS=(11,8,ZD,D)
OUTREC FIELDS=(1:1,10)
/*
Here we have data from 1 to 10 columns , i am generating
seqence number from column 11 in descending order , which
is not part of record layout .
After generating Seqence number digits will get reversed .
| Is This Answer Correct ? | 19 Yes | 8 No |
can we maintain 2 generations with different Lengths in Same GDG ?
At what stage, operator can change the class and priority of a submitted job?
01 A. 10 B pic X(10). move spaces to A. move spaces to B. output in A & B
what are the types of abends that occur on job failure? And explain the possible causes of these
What does the statements: typrun=scan and typrun=hold do in a JCL statement
What will happen if two JOB statements are mentioned in an JCL continuously.
What are SD37, SB37, SE37 abends?
how to create gdg with out using idcams utility
Whats error code s222?
what is XSUM in some fields= none, xsum ??
what is full form of AIX
How to test thru JCL if any file(PS or VSAM) is empty or not. I do not want to use any COBOL prog or Ezytrieve and want to do using utility.