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
What are hierarchy levels in jcl?
what JCL Procedures?
Explain how can return codes be tested before execution of a job step?
In sms datasets, what is the function of the dd mgmtclas keyword?
What is the function of //cntl statement?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
What are some jcl statements that are not allowed in procedures?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
In job processing, what happens in execution stage?
Explain the purpose of the dd keylen parameter?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
What is the maximum length of a single line of jcl?
What is the function of job statement in jcl?
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
How can a jobs execution priority be modified?