I have 5 steps in my jcl ,I need to execute first three
steps and then 2nd step again ,4th and 5th steps if rc of
2nd step is zero
Answer Posted / ajay digule
STEP01
STEP02 RC=0
STEP03 COND(4,LT,STEP02) CONDITION IS FALSE HENCE, STEP 3 WILL BE EXECUTED.
ON STEP04 AND STEP05 NO NEED TO MENTION CON CODE AS THEY WILL EXECUTE NORMALLY.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the function of //cntl statement?
What are the utility programs in jcl?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
which utility is used a dummy utility?
which utility is used to sort a file in jcl?
Where & How Do You Code Identifier In Jcl?
a dd statement has 2 types of parameters. Name them?
What are the jcl procedures?
What is the purpose of dd dummy statement?
what is the JCL statement consists of?
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
How does jcl act on a cobol code?
what is use of dcb parameter in dd statement?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you