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 |
How I sort the records in a file and copy the first 10 records to another file
How to send different PARM values based on the any condition to the program in a JCL? For example :- If the time is before 12:00 pm, I want to send "A" to some program and if it past 12:00 pm , I want to send "B" as a PARM value to that program. How to do it thur JCL only?
how can i use the parameters decalred in main pgm in sub pgm
What is TimeStamp, What is TimeStamp error and What is the Abend Code for TimeStamp Error ?
Hi, I have a requirement File A : I have 6 records out of which 4 are same. File B: I have 8 records out of 6 records are same. The 4 records in FILEA and 6 records in FILE B are same. If we substract we will get two records, I need these two records in output file This is because to remove the duplicates from the database. Through easytrieve we can compare but for that there should not duplicates, but in my file I have duplicates. Thanks in advance!!
when does a dataset go uncataloged?
When output dataset space is required, what quantity categories are used?
What 3 guidelines do we have to follow when concatenating DD statements?
What is the difference between a PDS member and a GDG Generation ? Is it only this, that with a generation we can use +1, 0, -1 etc while with PDS member we can not ?
. What is the difference between the following statements : I) step#1 exec PGM=accpay ii) step#1 exec tbalance
What are isolation levels? Where do we need to specify them in compiling JCL?
how to override PROC? please give answer in details. Please mention how to write it in JCL. Thanks in advance.