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 |
diff bw vsam and normal flat file?
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
what happens in conversion stage in job processing?
Explain the purpose of dd dummy statement?
what operation is performed by job statement?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
In a proc i will concatinate 4 dd statements.i want to overide 3 dd statement through jcl how?
What is the use of disp parameter?
Ques: How can we code COND parameter in a JCL so that only even steps (or only odd steps) get execute??
Can we use empty VSAM as input?
in catalog procedure i have step1 dd dsn=filea dd dsn=fileb dd dsn=filec ur concatenaning all the files. but i need to override fileb with file 2 ? can anyone give the ans pls for ths
What is the purpose and meaning of the TIME keyword and what JCL statement is it associated with?