what do you mean by include statement in jcl?
Answer / prabhat kumar
Include statement is used with sort utility to specify the conditions on which the records should be filtered.
Eg:
//sysin dd *
Sort fields = copy
Include cond=(1,5,CH’PRABHU’,A)
/*
Include is also used with IEBEDIT utility
to specify the steps need to be run or other conditions.
Eg:
//step0010 exec pgm= IEBEDIT
.
.
.
//sysin dd *
EDIT TYPE=INCLUDE
STEPNAME=(STEP0005,STEP0015,….)
/*
| Is This Answer Correct ? | 0 Yes | 0 No |
what are JCLLIB and STEPLIB in JCL?
wht do u mean by inrec and outrec ?
i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possible?
Name some of the JCL statements that are not allowed in procs.?
Brief description of inline procedure of jcl.
a dd statement has 2 types of parameters. Name them?
How I sort the records in a file and copy the first 10 records to another file
I have two files each contains 10 records. I would like to copy both files into one output file but in alternate sequence. for e.g. first record from file1 then record 2 from file2.....
What is the difference between IEBGENER, IEBCOPY and REPRO in IDCAMS utility?
how do u send return code from cobol to jcl ?
I have a File that has duplicate records. I need only those records that occur more than thrice.
what is the COND=EVEN ? Can anyone give me an example to explain the usage.