How do You skip a Step In JCL?
Answers were Sorted based on User's Feedback
Answer / rajesh_m13
Using COND operator if the condition is true it does not
execute
| Is This Answer Correct ? | 28 Yes | 2 No |
Answer / mohan
we can pass the COND parameter as (0,le) or (4096,ge) to the step which we wann skip from execution.
| Is This Answer Correct ? | 22 Yes | 6 No |
Answer / garry
@Kalpana:
Please do not misguide others, there no reverse direction.
SIMPLE RULE : Condition True = Bypass
Condition False = Execute.
Explanation given by you is not correct.
Anyways, thank you for reply.
Any issue or disagree can write to : gmt360@gmail.com
Garry
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / vinay sonar
We can do it using COND parameter put a always true
condition such as
COND=(0,le) or COND=(4095,ge)
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / steve holton
For an unconditional skip step, just remove it completely
from the job stream.
Otherwise, for conditional removal, you can use the COND=
stuff, which I consider to have "reverse logic" also, as
noted by one responder above. I think "reverse" because if
is notmal to think "If the RC is GT 8, SKIP, but the RC and
the "constant" (8, in this case) are backwards, so you have
to say "IF 8 LE RC, then skip to accomplish the same thing.
OR (and I prefer) JCL IF...ELSE ..ENDIF statements, which
uses more straightforward logic, analogous to the
IF/THEN/ELSE logic in programming languages (i.e. IF RC=0
THEN execute to the ELSE or ENDIF, else SKIP TO ELSE or ENDIF.
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / kalpana dwivedi
It is true that step can be skip using condition parameter
but COND=(0,LE) is not correct, as Cond parameter works on
reverse logic.
It should be COND=(0,GE) or (4096,LE)
That means step will not run if return code of previus step
is Greater than equal to zero or if the condition code of
previous step is less than equal to 4096.
| Is This Answer Correct ? | 13 Yes | 17 No |
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
what is check pending option
At what stage, operator can change the class and priority of a submitted job?
Can there be 2 job statements in a JCL? If yes what is the purpose of doing tha?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
How is the keyword DUMMY used in JCL?
My requirement is : How to populate a empty PS/flat file with ONLY spaces in the first line. You should not use any input dataset to do this. I'm not sure whether you may use any utility for this purpose?
Explain the function of the steplib dd statement?
how to allocate a dynamic dataset in jcl ?
What is S322 abend ?
I have a job which is a long-running one. Processes millions of records. Due to some run-time problem (not a problem due to the job/data) the job abends.What needs to be done to make the job complete successfully.
Explain the purpose of dd dummy statement?