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 there are 10 steps in a PROC, I want to execute
only step5. How do you give the condition in the JCL that
calls this PROC?

Answers were Sorted based on User's Feedback



Suppose there are 10 steps in a PROC, I want to execute only step5. How do you give the condition ..

Answer / siri

using restart parameter.....
//jobname job ,,,restart=proc.step5.....
and next given cond=(00,le) in step6 to step10..

Is This Answer Correct ?    4 Yes 1 No

Suppose there are 10 steps in a PROC, I want to execute only step5. How do you give the condition ..

Answer / sk

Use IEBEDIT
//IEBEDITJ JOB ACCT,'',CLASS=P,MSGCLASS=T,MSGLEVEL=
(1,1),NOTIFY=&SYSUID
//STEP0001 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=xxxxx.yyyyy.zzzzz,DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP5)
/*
//

Is This Answer Correct ?    8 Yes 6 No

Suppose there are 10 steps in a PROC, I want to execute only step5. How do you give the condition ..

Answer / sk

Use IEBEDIT utility, It can be solved easly using this
utility.

Is This Answer Correct ?    3 Yes 5 No

Post New Answer

More JCL Interview Questions

what is DD statement is used in JCL?

0 Answers  


what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?

2 Answers   Verizon,


can a job be submitted through jcl only? is there another way to submit a job?

2 Answers   CSC,


What happens if both JOBLIB and STEPLIB is specified ?

8 Answers  


can anyone explain me about sort in jcl with inrec and outrec ?

2 Answers   HCL,


what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.

1 Answers  


The maximum number of steps in a job?

4 Answers  


How to execute a set of JCL statements from a COBOL program ?

6 Answers  


There are a set of 10 files and a customer will be selecting random no of files(i.e they may be more than 2, may not be in the order).Sometimes he might just select one file or sometimes no files at all.How do you code a JCL for this? Is it possible to code just JCL alone for this problem?

9 Answers   Infosys,


how do u send return code from cobol to jcl ?

2 Answers   TCS,


can we modify the code in copy book? if it possible how to submit ofter the modification.

3 Answers   IBM, L&T,


what is pupose and meaning of the REGION keyword and what jcl statement is it associated with?

1 Answers  


Categories