suppose i have job it contains 10 steps after exicution of
job failuer at 3 and 7 th steps i want exicute step 3 and
step 7 only how we specify condition ?
Answers were Sorted based on User's Feedback
Answer / amy
IN THIS JCL YOUR JOB IS SUBMITTED BY DIFFERENT JCL AND ONLY
REQUIRED STEPS WILL BE EXECUTED.
//testjob JOB (MVSQuest),'IEBEDIT TEST',
// CLASS=B,MSGCLASS=X,NOTIFY=V665235,REGION=28M
//*
//SUBMIT EXEC PGM=IEBEDIT
//SYSUT1 DD DSN=your.JCL(member),DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
EDIT START=your-job-name,TYPE=INCLUDE,STEPNAME=
(STEP0003,STEP0007)
//*
In the above JCL, MEMBER is the 10 steps JCL. testjob is
the job-name of this JCL.
If TYPE is exclude, then the mentioned steps will not be
copied/submitted.
PLEASE LET ME KNOW IF I AM WRONG!!!
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ravi
in job for all other steps excluding 3rd and 7th steps give
this condition code as below
COND.Step1=(99,NE),
COND.Step2=(99,NE),
COND.Step4=(99,NE),
COND.Step5=(99,NE),
COND.Step6=(99,NE),
COND.Step8=(99,NE),
COND.Step9=(99,NE),
COND.Step10=(99,NE)
or we can use IF then condition condtions also
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mr . perfect
i have one questiion here man.. if step 3 is get abended ,
then how step 4 , step 5 , step 6 is going o excute till
step 7. dont ask foolishly question man...........?
Intervier is having mad...?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mohan.chepuri
restart=step3
restart=step7
these two jobs wil executed only
| Is This Answer Correct ? | 0 Yes | 3 No |
What is Backward Referencing ?
The maximum number of in-stream procedure you can code in any JCL is ?
Is their any limit for data sets?
WHAT WILL HAPPEN TO A FILE IF DISP=(MOD,DELETE,DELETE)
What is TimeStamp, What is TimeStamp error and What is the Abend Code for TimeStamp Error ?
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
List in order the hierarchical levels of jcl?
What parameter of the job statement is used to limit the cpu time consumed by the job?
My JCL contains four steps //STP1 A(+1), DISP = NEW //STP2 A(+2), DISP = NEW //STP3 A(+3), DISP = NEW //STP4 A(+1), DISP = OLD STP3 was abended and I want restart my JCL from STP3 onwards & what are the precaution I want to take & what are the changes I need to make. Pls let me know.
What do you do if you do not want to keep all the space allocated to a dataset?
hi,i have joined in mainframe course recently. ihave a doubt ragarding restart parameter.what is d use of it. and what is d syntax for it. any one give me d answer pls.
what are the various stages of job processing?