I am having one step in my jcl.in that step,i am calling one
proc.In that proc,i have 10 steps.i want to call a particular
step in that proc without writing any new jcl ike iebedit
utility...
Answers were Sorted based on User's Feedback
Answer / guest
1)Please use the Restart parameter in the job card (for
example Restart=jobstep.procstep)
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / venkat ramana
IN THIS CASE, CODE THE CONDITION PARAMETER ON THE JOB
STATEMENT IN SUCH A WAY THAT IT WILL BYPASS ALL THE STEPS
IN THAT JOB.
COND = (0,LE)
AND FOR WHAT EVER THE STEP YOU WANT EXECUTE, WRITE THE
BELOW COND PARAMETER
COND.STEPNAME (NAME OF THE STEP YOU WANT TO EXECUTE) =
(0,GT)
| Is This Answer Correct ? | 1 Yes | 3 No |
Is there GOTO and SWITCH-CASE available in JCL ? Is IF-THEN-ELSE available in JCL also just like it is available for VSAM datasets under Model Commands category ?
What is the difference between catalogue procedure and In-Stream procedure?
Why we us SYSTSIN DD with IKJEFT01 (TSO Utility) to execute a COBOL DB2 program? Why can't we use SYSIN DD?
How are GDGs concatenated?
How to override loadlib?
how can we pass parameters from JCL to cobol subprogram...my requirement is i should not get data from mainprogram but i need it from JCL directly
Must tape dataset definitions include vol=ser specifications?
Can we change a FB file to VB file in JCL? Please help
which utility is used to sort a file in jcl?
what operation is performed by job statement?
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
if we have a job consist of two steps and each step calling a proc having 10 steps each then how many steps are counted only 2 or 22(10+10+1+1)? can we have more than 255 steps in a single job?