I have a JCL with 10 steps, want to execute first 5 steps
only, what are ways of doing it?is it possible to control
through JOB card?
Answer Posted / vidya
From 5th to 10th step, give COND parameter. Give the
condition as COND=(0,LE). As 0 is always less than or equal
to the return code of executing step it will bypass.
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
what are the various stages of job processing?
Must tape dataset definitions include vol=ser specifications?
How can values be passed from the job stream to an executable program?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
What is one line to pass PARM from JCL to COBOL?
How do you create a temporary dataset?
Explain the function of dd disp parameter?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
a dd statement has 2 types of parameters. Name them?
what happens in execution stage in job processing?
List the different components of jcl statement?
How is a type of file defined in the jcl that executes the cobol program?
What parameter of the job statement is used to limit the cpu time consumed by the job?
How do you overcome this limitation ?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?