We have 100 steps in a procedure and we need to run the jcl
and execute only 25th step in the proc and not the
remaining steps. How can we do it?
Answer Posted / manjunath s h
use restart parameter, restart = procstep.stepname
procstep: the step of the jcl which is invoking the proc.
stepname: the step in proc where u want the execution to
start.
use null statement after the 25th step in the proc.
or
override the cond parameter of 26th step as cond=(0,LE).
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
List the different components of jcl statement?
How to pass data to a program that is coded in an exec statement?
what is DSN in JCL and what are the parameters to declare the DSN?
What is the function of job statement in jcl?
How can a jobs execution priority be modified?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
Differentiate between addressing mode and run mode.
How can values be passed from the job stream to an executable program?
how to do automated restart when a job abends?
How do you create a temporary dataset?
Can I share my data with other jobs? How?
in ways data can be passed to a COBOL program from JCL?
What are the 4 fields in dd statement?
What is the format of comment statement?