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

How to compare 2 files using File-Aid?

1 Answers   IBM,


What does the keyword DCB mean and what are some of the keywords associated with it?

3 Answers   ITC Infotech,


i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possible?

10 Answers   IBM,


//step#3 exec pgm = hkbc762 what is wrong with the syntax?

3 Answers  


How can we increment subscript and index?

1 Answers   CTS, IBM,


What is S322 abend ?

5 Answers  


i have 10 steps in my jcl. -->if i want to execute my program from 5th step what i have to do? don't give //* in ur previous steps --> if i want to execute my program from 1to 5 steps only what i have to do?

2 Answers  


Write a jcl to execute a job by 7 a.m on Jan 20,1986 ?

5 Answers   Maples, Patni, TCS,


What is condition checking in jcl? Is this possible?

0 Answers  


Can you give the sort card to arrange the specific column in the version of GDG.

1 Answers  


wht is the d/f between positional parameter n keyword parameter ?

1 Answers  


Explain how can return codes be tested before execution of a job step?

0 Answers  


Categories