how can i code cond parameter in procedures ?
i have a jclk calling a proc which has 10 steps i want to execute
from step 5 to step 10 where can i code restrat parameter or
cond parameter for ths
Answers were Sorted based on User's Feedback
Answer / greeshma
In job parameters give Restart= proc invoked step in
jcl.step in the proc where we want to restart.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / shaan
If you want to restart from a particular step from a
cataloged procedure, then type RESTART.PROCSTEPNAME.JOBSTEPNAME.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / prachi
COND parameter can be coded in Job card as well as on STEP..
In this case if you want to execute from STEP5 to STEP10
then you need to code Restart parameter on Job card as
Restart=STEP5
| Is This Answer Correct ? | 0 Yes | 3 No |
My JCL have five steps & I created new versions of GDG in first step through fourth step & fifth step I was refered Step one GDG version. My JCL got abend at 4th step and how I can restart my JCL Please let me know the answers. //STEP1 EXEC GDG1(+1) DISP=(NEW) //STEP2 EXEC GDG1(+2) DISP=(NEW) //STEP3 EXEC GDG1(+3) DISP=(NEW) //STEP4 EXEC GDG1(+4) DISP=(NEW) //STEP5 EXEC GDG1(+1) DISP=(OLD)
11 Answers HCL, IBM, L&T, TCS,
How to use COND Parameter in jcl
What are isolation levels? Where do we need to specify them in compiling JCL?
What are the common keyword parameters in both job and exec statements
How much is memory space involved, when we code BLOCKSIZE,TRK & CYL ?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
01 A. 10 B pic X(10). move spaces to A. move spaces to B. output in A & B
What are hierarchy levels in jcl?
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
What is concatenating?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?