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...


I had 100 steps in jcl i want to execute first 10 steps only?

Answers were Sorted based on User's Feedback



I had 100 steps in jcl i want to execute first 10 steps only?..

Answer / albert n

If the JCL is not submitted by TSO/ISPF where automatic
generation of a JOB card is normal, you simply add a card
to the deck that has only //. This signals to the JCL
conversion that the jobstream had ended.

e.g

//STEP1 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP2 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP3 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP4 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP5 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP6 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP7 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP8 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP9 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP10 EXEC PGM=....
//.... DD DISP=...,DSN=...
// <- END of job signal to JCL conversion
//STEP11 EXEC PGM=.... From here down is ignored
//.... DD DISP=...,DSN=...
//STEP12 EXEC PGM=....
//.... DD DISP=...,DSN=...
//STEP13 EXEC PGM=....
//.... DD DISP=...,DSN=...

Is This Answer Correct ?    7 Yes 1 No

I had 100 steps in jcl i want to execute first 10 steps only?..

Answer / shivanadri naveen kumar

After 10th step you should give jcl null statement or else
code condition parameter in step11.

Is This Answer Correct ?    7 Yes 1 No

I had 100 steps in jcl i want to execute first 10 steps only?..

Answer / harsha

You can use IEBEDIT utility to perform this activity.

Is This Answer Correct ?    6 Yes 0 No

I had 100 steps in jcl i want to execute first 10 steps only?..

Answer / srinivas

After 10th step you should give jcl null statement or else
code condition parameter in step11.

Is This Answer Correct ?    2 Yes 0 No

I had 100 steps in jcl i want to execute first 10 steps only?..

Answer / kamaldeep

The answer #5 by Challa Srinivas is wrong, if we give //STEP11 EXEC=PGM2,COND=(0,LE,STEP10) then it will only not run Step11 but will run all the step after it.

Is This Answer Correct ?    1 Yes 0 No

I had 100 steps in jcl i want to execute first 10 steps only?..

Answer / challa srinivas

Just code at step 11 as below.

//STEP11 EXEC=PGM2,COND=(0,LE,STEP10).

Please note that Step 10 should execute successfully at any cost else again the job will start executing from step 11 till end.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More JCL Interview Questions

What is condition checking in jcl? Is this possible?

0 Answers  


What are the parameter in the job card wihtout which job won't run........

10 Answers   IBM,


The maximum number of in-stream procedure you can code in any JCL is ?

5 Answers  


Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE

0 Answers  


When should DISP=MOD is used?

6 Answers   TCS,


What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?

0 Answers  


in job stmt i coded time=(2,30) and in step 1 i coded time=(1,30) and in step i coded time=(1,30), whch one executes first and what happens if step1 and step2 time executes and wht about the remaining time if step and step2 executes

4 Answers  


wht do u mean by internal reader in jcl ? wht is the use of internal reader ?

1 Answers   Syntel,


using cursor how can you fetch more than one record into a variable

3 Answers   Syntel,


What is DISP= (NEW,PASS,DELETE)?

3 Answers   HCL,


can we write a proc with in a proc

4 Answers   IBM,


In a JCL if previous steps return code is greater than 0 or 4 then the next step will not execute. But the job will be successfull with the maximum return code. How can we reset this maximum return code to '0' regardless of return codes of any steps?

4 Answers  


Categories