Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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 the purpose of dd * statement in jcl?

0 Answers  


i want to see the jobs in skeleton queue in diff region. (eg. 7 regions are running means , i want to see all the jobs in 7 regions which are in skel queue using 1 command)

1 Answers  


JCL Example: // //RUNJCL JOB CLASS=5,MSGCLASS=6,NOTIFY=&SYSUID //STEP01 EXEC PGM=IEFBR14 // .. .. If this JCL will run or it'll throw the ERROR?

4 Answers   HCL,


What are some jcl statements that are not allowed in procedures?

0 Answers  


In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides

6 Answers   Satyam,


What is COND=EVEN ?

9 Answers   IBM,


Explain the hierarchy levels in jcl?

0 Answers  


which parameter is used to check the syntax of a jcl without executing it?

0 Answers   IBM,


what is JCL?

0 Answers  


When will we need to specify Space parameter ?

3 Answers   Wipro,


What methodology can be adapted to transfer data to a program that is coded using the exec statement?

0 Answers  


How can we increment subscript and index?

1 Answers   CTS, IBM,


Categories