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 to execute step2,step5,step7 of a proc of 10 steps?
You are not allowed to change in JCL.

Answers were Sorted based on User's Feedback



How to execute step2,step5,step7 of a proc of 10 steps? You are not allowed to change in JCL...

Answer / adarsh

we can execute selected steps using iebedit utility..

//sysin dd *
edit type = include,stepname=(step2,step5,step7)
//

Is This Answer Correct ?    34 Yes 0 No

How to execute step2,step5,step7 of a proc of 10 steps? You are not allowed to change in JCL...

Answer / muttiah

@Adarsh:

That will be useful when we want to copy steps from a JCL
directly, not from a PROC.

@ NaliniNayak:
Using restart you can point to step2 of a proc as below.
//RESTART=PROCSTEP.STEP2 in the job card.

Code Cond=(0,LE) for all the steps you want to skip..Say in
our case it's 3,4,6,8 and 9th step in proc.

Is This Answer Correct ?    2 Yes 0 No

How to execute step2,step5,step7 of a proc of 10 steps? You are not allowed to change in JCL...

Answer / krish123

we can use COND code in order to execute this. Use condition
code in each step
//JOBNAME JOB ACCT, RESTART=PROCA.STEP2 ---> INORDER TO
EXECUTE THE PROGRAM FROM STEP2
//PROCA EXEC PROCA

//STEP1 EXEC PGM=PROGRAM1
//STEP2 EXEC PGM=PROGRAM2,COND=(0,LT,STEP1)
//STEP3 EXEC PGM=PROGRAM3,COND=(0,GT,STEP2)
//STEP4 EXEC PGM=PROGRAM4,COND=(0,GT,STEP3)
//STEP5 EXEC PGM=PROGRAM5,COND=(0,LT,STEP4)
//STEP6 EXEC PGM=PROGRAM6,COND=(0,GT,STEP4)
//STEP7 EXEC PGM=PROGRAM7,COND=(0,LT,STEP6)
//STEP8 EXEC PGM=PROGRAM8,COND=(0,GT,STEP7)
//STEP9 EXEC PGM=PROGRAM9,COND=(0,GT,STEP8)
//STEP10 EXEC PGM=PROGRAM10,COND=(O,GT,STEP9)

Is This Answer Correct ?    11 Yes 13 No

Post New Answer

More JCL Interview Questions

How can I override a dsn that is contained in a proc called by another proc? I need to do the override in the calling JCL.

3 Answers  


What is DATACOM db?

2 Answers  


explain concatinating datasets?

1 Answers  


How do you submit JCL via a Cobol program?

4 Answers   IBM,


How jcl is used for testing batch programs?

0 Answers  


what is use of space parameter in dd statement?

0 Answers   IBM,


01 A. 10 B pic X(10). move spaces to A. move spaces to B. output in A & B

2 Answers   Perot Systems,


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

0 Answers   IBM,


what sort card you will use to copy the data from one dataset to another dataset?

0 Answers   IBM,


Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?

0 Answers  


What is primary allocation for a dataset?

4 Answers  


What is the DD statement for a output file?

3 Answers  


Categories