How do you restart a PROC from a particular step?

Answers were Sorted based on User's Feedback



How do you restart a PROC from a particular step?..

Answer / guest

In job card, specify RESTART=PROCSTEP.STEPNAME where
PROCSTEP = name of the JCL step that invoked the PROC and
STEPNAME = name of the PROC step where you want execution to
start

Is This Answer Correct ?    44 Yes 8 No

How do you restart a PROC from a particular step?..

Answer / vivek kumar

In job card, specify RESTART=PROCSTEP.STEPNAME where
PROCSTEP = name of the JCL step that invoked the PROC and
STEPNAME = name of the PROC step where you want execution to
start.

Eg. suppose a catalog proc having 5 steps.

//myproc proc
//step1 exec pgm=...
//step2 .......
//step3 .......
//step4 .......
//step5 .......
suppose i have restrat this proc from step3
so in the job statment i have mentioned

//NMNP2VT JOB ,'PM111-010',MSGCLASS=S,CLASS=Q,
RESTART = PRC010.STEP3
//JOBLIB DD DSN=......
//PRC010 EXEC PROC = myproc
//....
//......

Is This Answer Correct ?    22 Yes 4 No

How do you restart a PROC from a particular step?..

Answer / satish.m.s

Restart=Proc step.step name

Is This Answer Correct ?    16 Yes 3 No

How do you restart a PROC from a particular step?..

Answer / senthil

YA WE CAN RESTART IT

Is This Answer Correct ?    5 Yes 2 No

How do you restart a PROC from a particular step?..

Answer / arjun

There is a procedure in ca7.

Where u can restart the job from ca11. there u need to
specify the step name and submit the job.

Is This Answer Correct ?    3 Yes 10 No

Post New Answer

More JCL Interview Questions

Is there any command to check wether the ps file is in sorted order?

4 Answers  


How do you submit a JCL under CICS environment ?

1 Answers   IBM,


What methodology can be adapted to transfer data to a program that is coded using the exec statement?

0 Answers  


Is automatic restart possible in jcl?

0 Answers  


what is full form of AIX

3 Answers   Accenture,






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?

5 Answers   iGate,


can we have more than one job in a single job card that is we are specifying only one 'job' statement in the jcl.

7 Answers   Accenture,


What is the function of the dd dcb keyword?

0 Answers  


What does the TIME parameter signify ? What does TIME=1440 mean ?

6 Answers   Accenture, TCS,


How to read records in reverse order in flat file?

1 Answers  


How to test thru JCL if any file(PS or VSAM) is empty or not. I do not want to use any COBOL prog or Ezytrieve and want to do using utility.

10 Answers   Lehman Brothers,


I have a input file. Data like: ABCDEFGH.... i want out put file like AB BC CD DE....How can do this??

7 Answers   UST,


Categories