If there are five steps in a JCL i have to execute the 3rd
step, bypass the 4th step and execute the 5th step how do i
do this?
Answer Posted / rajesh
We use the COND Parameter for By pass the 5th step &
RESTART=Step Name in the job Card.
// Jobname Job Acc.info,Programmer
name,..............,Restart=Step3
//Step4 EXEC PGM=Program Name,COND=(0,LE,Step3)
//Step5 EXEC PGM=Program Name
//
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How to override loadlib?
What are the rules employed while naming the steps in a job?
What is notcat 2 - gs?
Differentiate between the joblib and the steplib statements?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
What parameter directs the output of the job log dataset?
What are steplib and joblib?
what is the use of IEBGENER utility?
What is the difference between the positional and keyword parameters? Give examples.
For what purpose steplib and joblib are used ?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
What are the difference between jcl and jes?
What do you understand by jcl?
what are the types of abends that occur on job failure? And explain the possible causes of these
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.