what is the meaning of 'sysin dd dummy'
Answers were Sorted based on User's Feedback
Answer / arun
sysin dd *
it is used to pass the input statement called 'control pad'
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / deepak gairola
//sysin dd dumy :DUMMY has meaning as NULLFILE and is used
to suppress unused files. If you use it, it handles files
as non existing.
You can use it for example in IDCAMS with various input and
output files.
You have 20 input and 20 output files, but you only want to
use the 9th thru 13th input/output files without changing
the sysin instructions (REPRO).
So you set input/output file 1 thru 8 and 14 thru 20 to DD
DUMMY.
It works, try it.
Please go through the manual before posting
If you use it in a concatenated DD statement, be careful,
because it
identifies the EOF in the DD DUMMY, so it is the best way
to place it
at the end of a DD instruction.
All parameters used after a DD DUMMY, are ignored, this is
the difference between NULLFILE and DD DUMMY. NULLFILE
recognizes applied parameters.
Is This Answer Correct ? | 1 Yes | 3 No |
Explain about Cobol Subroutines
what is use of dcb parameter in dd statement?
i have records from 1 t0 100 . i need to open records from 10 to 18 and change the values in tht ? how can i do tht ?
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
proc1,proc2,up to proc5 is there if i want to call proc1 and proc5how can u write the code
how to convert fb to vb in jcl ?
What is COND=ONLY ?
in my jcl have 20 steps step1,step2,.... step20.and i have to execute step1,step2,..and skip the step3 and remaing step4,step5 are execute? i want skip step3 only? what code u can write?
What will happen if you attempt to restart a job in the middle of a JCL // IF .... // ENDIF?
How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The DISP in the JCL is SHR and the program opens the file in EXTEND mode. What happens ?
Can we DELETE all the Generations of a GDG at once, WITHOUT deleting the GDG itself ?