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
Explain the function of //jcllib statement?
which parameter is used to check the syntax of a jcl without executing it?
Is it possible to code instream data in a PROC?
How can the attributes of one sms dataset be copied to another dataset?
Explain how can a jobs execution priority be modified?
how you can access an uncataloged dataset in a JCL?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
Is condition checking possible in jcl?
which utility is used a dummy utility?
What is the difference between run mode and addressing mode?
What is use of restart and how to use it?
What are steplib and joblib?
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
What do you understand by jcl?