suppose i have job it contains 10 steps after exicution of
job failuer at 3 and 7 th steps i want exicute step 3 and
step 7 only how we specify condition ?
Answer Posted / ravi
in job for all other steps excluding 3rd and 7th steps give
this condition code as below
COND.Step1=(99,NE),
COND.Step2=(99,NE),
COND.Step4=(99,NE),
COND.Step5=(99,NE),
COND.Step6=(99,NE),
COND.Step8=(99,NE),
COND.Step9=(99,NE),
COND.Step10=(99,NE)
or we can use IF then condition condtions also
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of disp parameter?
What are the difference between jcl and jes?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
Are there any set of rules for the names of the steps used in a job?
how would you create a temporary dataset? And where will you use them?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
What is use of restart and how to use it?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
what is use of dcb parameter in dd statement?
a dd statement has 2 types of parameters. Name them?
How dummy is used in jcl?
Explain the function of dd disp parameter?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
i want to store 20 digits . how will u do it in cobol ?