There are 2PROCS in a JCL. I want following conditions to
be carried out
1) 1st PROC should be executed as such
In second PROC
2) First 4steps should not be executed
3) 5th step should not be executed
4) 6th and 7th step should be executed
The change should be done only in the JCL and PROC should
be untouched ?
Answer Posted / prem...
Even IEDEDIT utility can be used and other way is restart
from the particular step and use a cond parmeter when you
want to skip any step in the job flow(0,le) and to skip the
last steps null(//) can be used.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
how JCL works?
What is NOTCAT ?
What do you understand by the term notcat 2 – gs?
What are the parameters that are used in creating a gdg?
Give the syntax of job specifying jcl statement.
What is the motivation behind coding class parameter in job statement?
What is concatenating?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
How can return codes be tested before execution of a job step?
What are s0c1, s0c4, s0c5, s0c7 and socb?
Is condition checking possible in jcl? If yes, how?
List the different jcl statements that are not permitted in the procedures?
what operation is performed by job statement?
Why block size is multiple of lrecl in jcl?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?