What is the use of DUMMY statement in the JCL?
What is the use of DUMMY Utility in the JCL?
Answer Posted / lovely
Specifies no space allocation & no disposition processing
| Is This Answer Correct ? | 13 Yes | 6 No |
Post New Answer View All Answers
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 the dd mgmtclas keyword in sms datasets?
Can I send output of job to my remote device careerride123?
Is it possible to define dd statements as you want?
What is the function of the steplib dd statement?
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
What is notcat 2 - gs?
How gdg are concatenated?
Suppose I have five jobs to do. But I want to hold one?
Matching Logic in Jcl not in cobol.Could any one please answer this question
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
What are steplib and joblib? What for they are used?