What is the use of DUMMY statement in the JCL?
What is the use of DUMMY Utility in the JCL?
Answer Posted / sukumar
The DUMMY statement will allow a Jcl program to run if a
data set does not exist.
Following example:
//JOB1 JOB NOTIFY=&SYSUT1
//STEP1 EXEC PGM=IEBGENER
//DD1 DD DSN=IASM12.CLASS.PS1,DISP=SHR
//DD2 DD DSN=ISAM12.CLASS.PS2,DISP=SHR
//SYSIN DD DUMMY
//*Here statements tells about no input data.
Correct me if i'm wrong...... okai
| Is This Answer Correct ? | 38 Yes | 10 No |
Post New Answer View All Answers
Differentiate between addressing mode and run mode.
What are the jcl procedures?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
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
write a jcl to execute a job by 7:00 am on jan 20,1986?
What is jcl in mainframe?
Is condition checking possible in jcl?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
How can a fb file convert to vb file using sort program?
What are steplib and joblib? What for they are used?
Suppose I have five jobs to do. But I want to hold one?
What is the purpose of the dd keylen parameter?
What is the purpose of dd dummy statement?
what happens in conversion stage in job processing?
In job processing, what happens in conversion stage?