Hi,
I need to execute a job which has 4 steps.
The 4th step should execute only if either of the first three steps have executed successfully.
I used the following logic.
//Step1
//Step2
//Step3
//Step4 EXEC PGM=XXX,COND=((0,NE,STEP1),(0,NE,STEP2),(0,NE,STEP3))
However, this is working more like an "AND" clause rather than an "OR" clause on the COND statement.
Is there anyway I can make it check for an "OR" condition on the Return Codes of the preceding 3 steps ?
Thanks,
Sam.