If there are five steps in a JCL i have to execute the 3rd
step, bypass the 4th step and execute the 5th step how do i
do this?
Answer Posted / rahul singh
//jobname jobcardxx
// xxxxx
// xxxxx
// xxxxx
//..
//..
//step3 exec pgm=xxx,cond=(0,gt)
//....
//....
//step4 exec pgm=xxx,cond=(0,le)
//....
//....
//step5 exec pgm=xxx,cond=(0,gt)
//....
//....
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
what is the resolution for sb37 error
What is the function of the dd mgmtclas keyword in sms datasets?
What parameter of the job statement is used to limit the cpu time consumed by the job?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
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 do you understand by the term job time – out and how can you overcome that?
What is the purpose of the dd keylen parameter?
What is the function of the dd dcb keyword?
Is their any set of rules for dd? Explain.
How to override loadlib?
Explain dfsort utility?
how do you code a null statement?
What do you understand by the term notcat 2 – gs?
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.