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

Answers were Sorted based on User's Feedback



Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL..

Answer / ram.g

you can use iebedit utility

eg:
//xxxxx job ( ) .....
//step001 exec pgm=iebedit
//sysprint dd sysout=*
//sysut1 dd dsn= your.dsname,disp=shr
//sysut2 dd sysout=(*,intrdr)
//sysin dd *
edit type =include,stepname=your stepname
/*

Is This Answer Correct ?    6 Yes 1 No

Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL..

Answer / sravanthi

Yeah, We can give RESTART=PROCNAME.STEPNAME the job card of
the main jcl. And inorder that no other steps run after the
3rd step, specify //(null statement) in the JCL to stop the
execution of other steps in the PROC

Is This Answer Correct ?    7 Yes 5 No

Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL..

Answer / udhay

We can give RESTART=PROCNAME.STEPNAME the job card of the
main jcl

Is This Answer Correct ?    4 Yes 4 No

Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL..

Answer / guest

Thru CA7 we can restart the job from the step wherever you
want.First RUNH,JOB=JOBNAME after that XQ,JOB=JOBNAME Give
F in front of the job in the left side after that mention
the step name and put X in front of that left side and hit
enter.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More JCL Interview Questions

I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?

5 Answers   iGate,


which parameter is use to declare the name of dataset in dd statement?

0 Answers   IBM,


What are the default system and catalog libraries in JCL?

2 Answers   Infosys,


Can we change a FB file to VB file in JCL? Please help

1 Answers  


What is DISP= (NEW,PASS,DELETE)?

3 Answers   HCL,


How to copy VSAM files without using REPRO

3 Answers   ADP,


What all are the changes to be made in JCL so as to do testing?

2 Answers   TCS,


At what stage, operator can change the class and priority of a submitted job?

2 Answers  


in job stmt i coded time=(2,30) and in step 1 i coded time=(1,30) and in step i coded time=(1,30), whch one executes first and what happens if step1 and step2 time executes and wht about the remaining time if step and step2 executes

4 Answers  


Explain about Internal Sort

1 Answers  


What will happen if we write two STOP RUN's in a COBOL program?

4 Answers   Satyam,


how many types of sorts are there in jcl?

2 Answers   IBM,


Categories