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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *