i have a jcl calling proc which has 10 steps, i want to
execute from step5 to step10, where can i code RESTART and
COND parameter?
Answers were Sorted based on User's Feedback
Answer / karthikeyan
in job card itself you can give this
restart=procname.step5
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / rajkanya
The RESTART parameter can be coded at JOB CARD level as:
RESTART=PROCNAME.STEPNAME ( in this case STEP5 )
and the COND parameter can be coded at both JOB and STEP
level. At STEP5, as:
//STEP5 EXEC PGM=.....,COND=EVEN
COND=ONLY it allows step execution if any prior step is
ABENDED
COND=EVEN it allows step execution even if the prior step
is ABENDED
| Is This Answer Correct ? | 2 Yes | 0 No |
what is the purpose of coding notify parameter in job statement?
I need exexution process for JCL programs
What will happen if two JOB statements are mentioned in an JCL continuously.
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?
what is the purpose of SYSOUT parameter in the DD statement?
whats the diff bw the evaluate also and and?
There are a set of 10 files and a customer will be selecting random no of files(i.e they may be more than 2, may not be in the order).Sometimes he might just select one file or sometimes no files at all.How do you code a JCL for this? Is it possible to code just JCL alone for this problem?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?
oza017.myorg.emp has 100 records ,oza018.myorg.staff has 200 records but 50 are the common records in both files copy all the common records into oza017.myorg.xyz dataset
What are hierarchy levels in jcl?
Given a input file with duplicates how to remove the duplicate records from the file using JCL?
6 Answers CDS, Convergys, TCS,