I have a JCL with 10 steps, want to execute first 5 steps
only, what are ways of doing it?is it possible to control
through JOB card?

Answers were Sorted based on User's Feedback



I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / suresh ramaiyan

You can create a NULL (//) point after the 5 step. so the
job will stop after step 5 is executed.

I don't think we can do it via JOB CARD. Please let me know
if anyone knows.

Is This Answer Correct ?    14 Yes 1 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / praveen kumar bejjanki

There are two ways in order to achieve this.
1. Give a null statement(//) after step5
2. Give the cond parameter starting from step6 through
step10 as cond=(0,le). This parameter will bypasses the
step6 through step10 as it satisfies the cond for any of
the RC(return code).

Is there any other way, kindly let me know.....
Thanks!

Is This Answer Correct ?    9 Yes 0 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / bala

Give COND=(99,NE)for all the other steps following STEP5.
Its skips those steps.
Also, a Null (//) given after STEP5 does the same.

Is This Answer Correct ?    4 Yes 1 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / veer

we can achieve this with the IEBEDIT Utility......!!!

Is This Answer Correct ?    4 Yes 1 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / shivakrishna

we can bypass by giving cond parameters in step from 6 if
we know the cond codes from previous steps.

Is This Answer Correct ?    2 Yes 1 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / venkataramana

It is simple after fifth step we will use cond=(0,LE) in
each step for avoiding the execution.

Is This Answer Correct ?    1 Yes 0 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / veer

'to execute first 5 steps only', end of the 5th step
introduce NULL(//) character and run. first 5 steps will
run.

If you want to run step3, step5, step10 like that, use
IEBEDIT utility.

Is This Answer Correct ?    1 Yes 0 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / kalaiarasan

Anshuman is wrong its not EIBEDIT, its IEBEDIT

Is This Answer Correct ?    0 Yes 0 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / ranjan

i do agree with suresh.

Is This Answer Correct ?    0 Yes 1 No

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it po..

Answer / anshuman

you can use the IBM utility EIBEDIT for this n mention step
1 to 5

Is This Answer Correct ?    2 Yes 4 No

Post New Answer

More JCL Interview Questions

I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?

16 Answers  


Explain about LMMFIND - find a library member

1 Answers  


i have job card like this //job ***** //step1 exec pgm=iebgener //sysut1 dd dsn=main.sss,disp=shr // dd dsn=main1.sss,disp=shr // dd dsn=main2.sss,disp=shr //sysut2 dd dsn=out1.mmm ,disp=(new,catlg,delete) dcb=( ) // sysin dd * like this what i have to do to skip dsn=main1.sss please giveme answer asap

2 Answers   IBM, TetraSoft,


Explain about LMMLIST�list a library's members

1 Answers  


List the various advantages of using jcl language?

0 Answers  






what is fixed length and variable length and difference between them

1 Answers   CGI, Wipro,


How to execute 300 steps in a Job?

15 Answers   Accenture, Zensar,


How to use COND Parameter in jcl

4 Answers   NIIT, Wipro,


How many types of libraries are there in JCL ?

2 Answers   IBM,


what are the symbolic parameters? why do we use symbolic parameters ?

2 Answers   IBM, TCS, UST, Xansa,


diff bw SB37,SD37,SE37 ?( bcz these 3 belongs Space related abends only)

4 Answers   RBS,


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

0 Answers   IBM,


Categories