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 |
Explain the purpose of dd * statement in jcl?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
i have a string of 80 chars i want to replace 4th char with "a"?
how can u understand ps and pds from their names ?
What are the rules employed while naming the steps in a job?
how do u send return code from cobol to jcl ?
I HAVE A SEQUENTIAL FILE CONTAINING ONE RECORD IN WHICH I HAVE ONE FIELD AS CUSTOMER IDENTITY NUMBER FIELD WHICH IS A SIGNED FIELD. HOW TO SEQUENTIALLY INCREMENT THIS FIELD USING OVERLAY PARAMETER?.
What is 'S0C7' abend?
Explain about LMMFIND - find a library member
What is the function of a dd statement?
I have 15 flat files. each record in the files have the monthly salary for 12 months with the employee number. Now I want to concatenate the 15 files such that for the employee numbers that are common the o/p file should have only one record and the salaries should be concatenated to that record. How can we do it with JCL?
How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?