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 |
How do you skip a particular step in a proc/JOB?
I need to compare two VSAm files. In input VSAM file some fields are updating and the updated feilds are coming into the output file. now i need to compare these two files with respect to a perticular field. Please suggest a suitable JCL code me.
Can we use DISP=SHR in output file in JCL
How do you submit JCL via a Cobol program?
What is the differentiation between TRK,cyl, and Bytes... how they can be connected??
A job has 150 steps i want to execute only 57th step
How to send different PARM values based on the any condition to the program in a JCL? For example :- If the time is before 12:00 pm, I want to send "A" to some program and if it past 12:00 pm , I want to send "B" as a PARM value to that program. How to do it thur JCL only?
Which statement is used to identify the private libraries in job?
what is the default region size if I dont specify region parametre in my job card ( I know that if I specify region=0k or 0M, then the job will occupy all he available resources at the time of job execution), but I want to know the defult value for "region" paramatre.
how to execute the last 5 steps in jcl
Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE
If the COND parameter is specified in both the JOB and EXEC statements, which one will take precedence? If JOB takes priority and if all the conditions evaluate to false, then will the conditions on the EXEC step be evaluated next?