What is the use of DUMMY statement in the JCL?
What is the use of DUMMY Utility in the JCL?

Answer Posted / harsh kumar

The DUMMY parameter specifies that no device is to be
allocated to this DD statement and that no disposition
processing or I/O is to be
done.
One use of the DUMMY parameter is in testing a program.
When testing is finished and you want input or output
operations performed on the data set, replace the DD DUMMY
statement with a DD statement that fully defines the data
set.

Is This Answer Correct ?    24 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is notcat 2 - gs?

930


which parameter is use to declare the name of dataset in dd statement?

724


which parameter is used to check the syntax of a jcl without executing it?

793


What is the function of //cntl statement?

825


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

850






What statement can be used to send data to another mvs jes3 node?

813


Is it possible to code instream data in a PROC?

743


Is condition checking possible in jcl? If yes, how?

733


Name a few IBM utility programs, and explain its function.

4427


How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?

2158


How to override loadlib?

1414


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.

726


Brief description of inline procedure of jcl.

678


why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.

1939


I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?

1341