How to restart a job from particular step in JCL?

How to restart a job from particular step in JCL?

Job can be restarted from particular step using below syntax,
Add below command in job card,

RESTART=STEP_NAME

STEP_NAME = Name of step from where you want to restart the job.

If you are using cataloged procedure in your job then the syntax will be as,

//MYJOB    JOB ("","",""),
//                RESTART=MYPROC.STEP_NAME
.
.
//MYPROC   PROC    PROC_NAME

In above example STEP_NAME is a name of step of a proc PROC_NAME