You have a JCL job with two job steps, A and B. You want step B to execute only if step A completes with a return code of 0. How would you achieve this using JCL's conditional processing?
- COND parameter on step A with COND=(0,EQ)
- COND parameter on step A with COND=(0,NE)
- COND parameter on step B with COND=(0,EQ)
- COND parameter on step B with COND=(0,NE)
To execute step B based on the completion code of step A, you use the COND parameter with (0,EQ) to check if the return code is 0.
Loading...
Related Quiz
- What happens if the condition specified in the IF statement is not met, and there is no ELSE statement in the JCL?
- The _______ parameter in the DSN definition specifies the organization of the dataset.
- How can you specify the disposition of a dataset during allocation in JCL?
- What does the COND parameter in a JCL job control statement determine?
- What is the significance of the COUNT parameter when using the IEBDG utility?