Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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



suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want ..

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

suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want ..

Answer / mmreddy

we can use if then condion u can executeit.

Is This Answer Correct ?    0 Yes 0 No

suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want ..

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

suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want ..

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

suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want ..

Answer / mohan.chepuri

restart=step3
restart=step7
these two jobs wil executed only

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More JCL Interview Questions

What is Backward Referencing ?

3 Answers   HSBC,


The maximum number of in-stream procedure you can code in any JCL is ?

5 Answers  


Is their any limit for data sets?

0 Answers  


WHAT WILL HAPPEN TO A FILE IF DISP=(MOD,DELETE,DELETE)

8 Answers   ADP,


What is TimeStamp, What is TimeStamp error and What is the Abend Code for TimeStamp Error ?

4 Answers   IBM,


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?

3 Answers   Wipro,


List in order the hierarchical levels of jcl?

0 Answers  


What parameter of the job statement is used to limit the cpu time consumed by the job?

0 Answers  


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.

4 Answers   CTS,


What do you do if you do not want to keep all the space allocated to a dataset?

2 Answers  


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.

3 Answers  


what are the various stages of job processing?

0 Answers   IBM,


Categories