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
Answer Posted / 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 |
Post New Answer View All Answers
if the submitter of a job wants to inform another user about the job completion, how can it be done?
Explain in DD statement what is the use of DCB parameter?
What do you understand by the term notcat 2 – gs?
Where can program checkpoints be stored for use in a restart?
When space is allocated for an output dataset, what units can be used?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
What is the function of job statement in jcl?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
Is their any set of rules for dd? Explain.
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
what JCL Procedures?
what are the various stages of job processing?