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 is the difference between perform varying and perform
How to copy one PS file to multiple PS files with same data?
What is Automatic Restart ? EXEC PGM = PROG1, RD = R (Is it the Restart of a JOBSTEP or Restarting the execution of the program?) Do we Restart it or it automatically Restarts executing again and again ? Then when it will finish executing ? or After Abending, when we submit it again, then it is Restarted from the Last successful Checkpoint ? If some JOBSTEP is abending, what is the benifit to Restart it, WILL IT NOT ABEND AGAIN if you don't change the LOGIC ?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
What is the difference between primary and secondary allocations for a dataset?
How to create delta file using JCL
I need to compare two VSAm files. In input VSAM file some fields are updating and the updated feilds are coming into the output file. now i need to compare these two files with respect to a perticular field. Please suggest a suitable JCL code me.
how do u see jobs submitted before ur job ?
what is the COND=EVEN ? Can anyone give me an example to explain the usage.
HOW TO CONVERT VARIABLE BLOCK TO FIXED BLOCK ?
a dd statement has 2 types of parameters. Name them?
List the various advantages of using jcl language?