i have a jcl calling proc which has 10 steps, i want to
execute from step5 to step10, where can i code RESTART and
COND parameter?

Answers were Sorted based on User's Feedback



i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

Answer / kislay

restart=procname.step5

Is This Answer Correct ?    12 Yes 0 No

i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

Answer / karthikeyan

in job card itself you can give this
restart=procname.step5

Is This Answer Correct ?    8 Yes 0 No

i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

Answer / rajkanya

The RESTART parameter can be coded at JOB CARD level as:
RESTART=PROCNAME.STEPNAME ( in this case STEP5 )
and the COND parameter can be coded at both JOB and STEP
level. At STEP5, as:
//STEP5 EXEC PGM=.....,COND=EVEN
COND=ONLY it allows step execution if any prior step is
ABENDED
COND=EVEN it allows step execution even if the prior step
is ABENDED

Is This Answer Correct ?    2 Yes 0 No

i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i c..

Answer / raghu

restart= stepname.proc

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More JCL Interview Questions

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,


What is the difference between BLKSIZE and LRECL?

3 Answers  


what happens if job falls in loop ? how to resolve it ?

3 Answers   Patni,


What does the one advantange of using IEBUPDTE?????

2 Answers  


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

0 Answers  






what modification we need to do in jcl if we use sort in cobol? I mean whether we need to include temporary file used for sorting in assign statement?

1 Answers  


. What is the difference between the following statements : I) step#1 exec PGM=accpay ii) step#1 exec tbalance

1 Answers  


Can I copy the FB (fixed Block) record length file to a VB (variable Block)record length file and Vise Versa? If Yes then how ? is that thru one of the JCL utility ?

3 Answers  


Is it possible to code instream data in a PROC?

0 Answers  


Suppose there r total 10 steps. Out of which i want to execute only the 7th step. How can i do that....????

3 Answers  


Explain the hierarchy levels in jcl?

0 Answers  


If the COND parameter is specified in both the JOB and EXEC statements, which one will take precedence? If JOB takes priority and if all the conditions evaluate to false, then will the conditions on the EXEC step be evaluated next?

4 Answers   Wipro,


Categories