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 4 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

wht happens if cond=true ? pls give me with an example ?

2 Answers   Syntel,


how to create a member or sequential dataset through tso command??

4 Answers  


Explain COND used in JCL?

1 Answers   Patni,


What is multithreading in jcl?

0 Answers  


//{name} INCLUDE MEMBER=memname {comments} in the include statement, what actually happens when its executed? The membername conatains a list of valid JCL statements, so will the include statement be substituted by these statements and how can we mention the pds that conatains the member? How does the include group differ from a PROC? how is include statement connected to JOBLIB and STEPLIB?

2 Answers   CCS, CTS,






i want to see the jobs in skeleton queue in diff region. (eg. 7 regions are running means , i want to see all the jobs in 7 regions which are in skel queue using 1 command)

1 Answers  


how to have variable length record in outrec..i have the requmt as follows.. i/p file variable lenght record output file : i need to alter the input and write into outrec(another file) sort fields: copy from(dd1) using ctl1 ctl1cntl dd * outfil fnames=xxx, outrec=(1,131) here i outrec is bombing with error..how to overcome this defect...???

1 Answers  


i have a base gdg consisting of 12 versions like jan to dec. i need to concatante this gdg to another gdg which have version 1 or to the base gdg itself can anyone give me the code pls ?

4 Answers   IBM,


I have a sequential file in which there are 50 records. Now I want to copy all the 50 records in the reverse order into a new file? The last record in the original file should be the first record in the new file. How can I do it?

4 Answers   IBM, TCS,


what is the resolution for sb37 error

2 Answers   TCS,


what is the difference between static call and dynamic call?

1 Answers  


what is the sortcard for comparing two files with a field key and get the duplicates in onefile and noduplicates in another file

3 Answers   Virtusa,


Categories