i have five step in jcl.my forth step is gdg.gdg was
abend.when will job complete,hoe to handle you
Answers were Sorted based on User's Feedback
Answer / shailendra
if you know abend is happning on forth step. so for the
next execution give restart parameter on job statment
restart=5stepname
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / suneet
If there is an ABEND after the fourth step then the
execution will stop after the fourth step itself (i.e. the
fifth and the steps ahead will not be executed). If you
want the steps after the fourth step to be executed then
code COND=EVEN or COND=ONLY for those steps causing them to
be executed "even though" or "only when" the ABEND occurs.
| Is This Answer Correct ? | 3 Yes | 0 No |
i have 10steps and i want run step3 and based on step3 i want execute step7,8,9,10?in jcl
Is it possible to left uncode disp?
Is it possible to code instream data in a PROC?
if we are specifing joblib as well as steplib in job then at the time of execution how the process will complete
Can we use COND=EVEN on a job card, when jobs are scheduled through scheduler?
What is TimeStamp, What is TimeStamp error and What is the Abend Code for TimeStamp Error ?
Explain how can return codes be tested before execution of a job step?
How to skip first step of a job? Can we use COND on the first step?
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?
wht do u mean by notify parameter, how can u give acess to multiple users ?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the second step using the JCL, How to do it?? Please give the answer ASAP:)