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 / rudolf
This jcl is the correct answer, this is used to run a batch
job in production environment.
*** if the JCL will run step3 and step5 condcode is 0
while step4 condcode is flush means it will not run.
//jobname jobcardxx
// xxxxx
// xxxxx
// xxxxx
//..
//..
//step3 exec pgm=xxx,cond=(4,lt)
//....
//....
//step4 exec pgm=xxx,cond=(0,le)
//....
//....
//step5 exec pgm=xxx,cond=(4,lt)
//....
//....
RUDOLF M. AQUINO
SYSTEM PROGRAMMER(MAINFRAME)
UNITED COCONUT PLANTERS BANK
MAKATI CITY
| Is This Answer Correct ? | 13 Yes | 4 No |
Post New Answer View All Answers
What is the function of //jcllib statement?
what is the resolution for sb37 error
How dummy is used in jcl?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
Is condition checking possible in jcl?
What is concatenating?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
Explain how can values be passed from the job stream to an executable program?
What dd statement is used to supply the name of a dataset?
define cond parameter in jcl?
hello friends ,i have exam in Hsbc,pls any on send me placement papers and technical questions on mainframes,thank u
what is a jcl?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
What is Cataloged Procedures?
Differentiate between the joblib and the steplib statements?