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

Explain about File Tailoring

1 Answers  


How can we execute only one step in a job

22 Answers   MAHINDRA, Mind Tree, Tech Mahindra,


how to allocate a dynamic dataset in jcl ?

3 Answers   Patni, TCS,


How much is memory space involved, when we code BLOCKSIZE,TRK & CYL ?

1 Answers  


Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE

4 Answers   Merrill Lynch,






What is the function of //cntl statement?

0 Answers  


How to check empty file in jcl?

4 Answers   Infosys,


Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?

0 Answers  


i have records from 1 t0 100 . i need to open records from 10 to 18 and change the values in tht ? how can i do tht ?

2 Answers   Syntel,


In Job, there are 10 steps. If I want to execute the first 6 steps and don't want to execute from 7th to 10th step. What is the solution for this ?

7 Answers  


can u execute a proc from another proc?

5 Answers   Logica CMG,


difference between internal sort and external sort

1 Answers  


Categories