I have a JCL which 20 steps. How do I execute 17 th step
alone (It should execute only 17ths tep.and it should not
execute 18,19,20 steps??
Answer Posted / anurag singh
At Job card level write Restart=step17(ddname) and put null
indicator (//) at the end of 17th step , so that while
executing the job will start form 17th step and after that
it will find the null indicator , so job execution will be
terminated.
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
what is the purpose of coding class parameter in job statement?
a dd statement has 2 types of parameters. Name them?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
What is the function of the dd mgmtclas keyword in sms datasets?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
What are hierarchy levels in jcl?
what is use of space parameter in dd statement?
which parameter is use to declare the name of dataset in dd statement?
What do you know about jcl?
Explain how can an in-stream dataset be terminated?
what is use of dcb parameter in dd statement?
List in order the hierarchical levels of jcl?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY