How to Execute from the second step in the PROC that is used in the JCL?

Showing Answers 1 - 10 of 10 Answers

Ram

  • Jun 27th, 2006
 

On jobcard using RESTART option specify PROCName.StepName you want to restart at.

  Was this answer useful?  Yes

Shasha

  • Nov 8th, 2006
 

Assume proc as P1000 and second step as SP10002P. And the step in the Job to execute the proc is like

//STEP01  EXEC P1000

To execute the proc from second step, Add the RESTART option in the Job card like

RESTART=(STEP01.SP10002P)

Hope it will helpful.

  Was this answer useful?  Yes

P.Karthikkumar

  • Jan 10th, 2007
 

Hi,

For that u have to use in jobcard like this

//JOBNAME  JOB NOTIFY=&SYSUID, RESTART=JOBSTEPNAME.PROCSTEPNAME

Thanks&Regards

Karthikkumar.P

  Was this answer useful?  Yes

P.Karthikkumar

  • Jan 10th, 2007
 

You can restart like this.

//JOBNAME JOB NOTIFY=&SYSUID,RESTART=JOBSTEPNAME.PROCSTEPNAME.

Thanks&Regards

Karthikkumar.P

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions