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
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 |
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 |
Answer / udhay
We can give RESTART=PROCNAME.STEPNAME the job card of the
main jcl
| Is This Answer Correct ? | 4 Yes | 4 No |
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 |
What statement can be used to send data to another mvs jes3 node?
What will happen if we write two STOP RUN's in a COBOL program?
What is the error in the following JCL statements : I) //step#three exec pgm=hkbc762 ii) //step#3 exec pgm = hkbc762 iii) //step#3 exec pgr = hkbc672
How do you create a temporary dataset? Where will you use them?
Wrete a JCL to compare two files and mached records move to onc file & un mached rows wants to another file?
13 Answers CGI, DSRC, IBM,
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you
what is the use of IEBGENER utility?
I have one GDG. Everyday One new version is being created.Now I want to split this created version in different files each having 1000 records. Here Problem is I don't know How many records will be there in new version of GDG? that's why I don't know How many Out files we need to use . Interesting??????????????
how to do automated restart when a job abends?
Explain about Specifying compiler options in the PROCESS (CBL) statement
What is dummy parameter in JCL??
In jcl i have 255 steps. In 255 step i declared proc. In proc i have 20 steps this job is executable or not? why?