Multiple choice technology mainframe

To restart a PROC from a particular step, we need to specify RESTART=PROCSTEP.STEPNAME in the Job CARD. where PROCSTEP = name of the JCL step that invoked the PROC and STEPNAME = name of the PROC step where you want execution to start.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The RESTART parameter in JCL requires the format RESTART=PROCSTEP.STEPNAME where PROCSTEP is the JCL step name that invoked the PROC, and STEPNAME is the specific PROC step to restart from. This syntax correctly identifies both the invoking step and the target step within the called procedure.