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

How we can code in a jcl to execute a job in a particular time and date without using any job shudular?. (Eg) i want to execute a particular job at 8 am on 01/01/2010.

2 Answers   Target,


What are the default system and catalog libraries in JCL?

2 Answers   Infosys,


how to run JCL thru COBOL.

1 Answers   Patni,


How do you designate a comment in JCL?

1 Answers  


Explain the jcl exec statement?

0 Answers  






I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?

0 Answers  


how to purge 50 initiators continuously?? console commands??

4 Answers   IBM, ups,


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,


What is a S0C4 error ?

2 Answers  


what is the job entry system used in your project?

3 Answers  


write a jcl to execute a job by 7:00 am on jan 20,1986?

0 Answers   IBM,


What happens if both JOBLIB & STEPLIB is specified ?

0 Answers  


Categories