In JCl which of this activities get executed if act002
abnormally terminates
//job001 job .........
//act001 exec pgm=cobo01
//act002 exec pgm=cob02, cond=(01,le)
//actoo3 exec pgm=cob03, cond=only
//actoo4 exec pgm=con04
Answers were Sorted based on User's Feedback
Answer / pratim
If act002 exec pgm=cob02 fails,
actoo3 exec pgm=cob03, will execute because of cond=only!
but actoo4 will not execute!!
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / vinay sonar
ACT003 AND ACT004 WILL EXECUTE BECAUSE COND=ONLY MEANS
EXECUTE THAT STEP ONLY IF PREVIOUS STEP ABENDS
| Is This Answer Correct ? | 0 Yes | 1 No |
List some valid operation codes in JCL
State the uses of syspring, sysin, sort fields, sum fields and dummy.
restart logic ?
What is the difference between joblib and jcllib statements
is step name is compulsory in jcl ?
What is the syntax of JCL statement?
Can you delete the GDG base without deleting GDG generations ?
Explain dd statement in jcl?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
how many max steps can we use in a job? pls answer to my question
what modification we need to do in jcl if we use sort in cobol? I mean whether we need to include temporary file used for sorting in assign statement?
There are two steps in a JCl, the first one generates a report while the second step send an email saying the report has been generated, but the second steps should only be executed when the report file is non-empty. How can it be acheived. We may include steps in between.