When we use conditional statement in JCL using
if-then-else-endif, IF statement is true, the step is
bypassed or executed?
Answer Posted / shubha
statement is executed,but if we use cond=( ),
then if the statement is true step will be bypassed.
Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
what are the various stages of job processing?
Is there any command to check wether the ps file is in sorted order?
what is the compile process of cobol program expalin with code
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
what is use of dsn parameter in dd statement?
Name a few IBM utility programs, and explain its function.
I need exexution process for JCL programs
What do you know about jcl?
How is a type of file defined in the jcl that executes the cobol program?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
Are there any set of rules for the names of the steps used in a job?
What dd statement is used to supply the name of a dataset?
Explain about LMQUERY�give a dialog information about a data set
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
i want to store 20 digits . how will u do it in cobol ?