wht happens if cond=true ? pls give me with an example ?
Answer Posted / shailendra
that individual step in which this cond parameter mentioned
this will not execute (bypass this step)
Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
what is SOC4 error?
Where & How Do You Code Identifier In Jcl?
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 statement can be used to send data to another mvs jes3 node?
How to do automated restart when a job abend?
Explain dfsort utility?
What is the purpose of disp parameter?
what are the types of abends that occur on job failure? And explain the possible causes of these
What is jcl in mainframe?
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
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you
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
how to run batch program without jcl?
What dd statement is used to supply the name of a dataset?
Explain how can the submitting users racf authority be overridden in a job stream?