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
how you can direct the data to spool using SYSOUT option?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
what is the resolution for sb37 error
How is a type of file defined in the jcl that executes the cobol program?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
What is the purpose of disp parameter?
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
What is the format of comment statement?
Explain how can values be passed from the job stream to an executable program?
How to code these statements in JCL: CLEANUP INITIAL(NO) RESTART(NO) DYNALLOC(NO) job definition..?
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
How can the disposition of sysout datasets be set for an entire jobstream?
Which statement is used to identify the private libraries in job?
What is catelog procedure and how many catelog procedure to use in one job?
What is the use of disp parameter?