How do You skip a Step In JCL?

Answers were Sorted based on User's Feedback



How do You skip a Step In JCL?..

Answer / rajesh_m13

Using COND operator if the condition is true it does not
execute

Is This Answer Correct ?    28 Yes 2 No

How do You skip a Step In JCL?..

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

How do You skip a Step In JCL?..

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

How do You skip a Step In JCL?..

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

How do You skip a Step In JCL?..

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

How do You skip a Step In JCL?..

Answer / saba

sing inter parameter we can skip the step

Is This Answer Correct ?    5 Yes 2 No

How do You skip a Step In JCL?..

Answer / ramya

Using COND operator if the condition is true it does not
execute

Is This Answer Correct ?    4 Yes 1 No

How do You skip a Step In JCL?..

Answer / rohit thakur

S1 -> p1
s2 -> p2 , cond=(0,le,s1)

Is This Answer Correct ?    2 Yes 1 No

How do You skip a Step In JCL?..

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

Post New Answer

More JCL Interview Questions

Explain how can an in-stream dataset be terminated?

0 Answers  


what is a jcl?

0 Answers   IBM,


What is the use of the utility DFSRRC00 in the JCL?

2 Answers   Convergys,


COND -> step1 . . step2, Step2, Executes if the CC of step1 is 0. But even if it is NOT 0 and if we dont give COND, will step2 be executed ?

4 Answers   IBM,


Name the system library from which modules are retrieved at execution

3 Answers  






How can the submitting users racf authority be overridden in a job stream?

0 Answers  


What is the error in the following JCL statements : I) //step#three exec pgm=hkbc762 ii) //step#3 exec pgm = hkbc762 iii) //step#3 exec pgr = hkbc672

6 Answers  


How do you restart a PROC from a particular step?

5 Answers  


how to compare two datasets without using superce because output is limited to 133 bytes

0 Answers  


which parameter is use to declare the name of dataset in dd statement?

0 Answers   IBM,


if we have a job consist of two steps and each step calling a proc having 10 steps each then how many steps are counted only 2 or 22(10+10+1+1)? can we have more than 255 steps in a single job?

5 Answers   Accenture,


Can we have a JOBSTEP without any EXEC ?

6 Answers   IBM,


Categories