Current version of GDG is ID.GDG.FILE.G0001V00. JCL has procedure with 2 steps like below,
What will be the output file name in each step ?
PROC starts
Step 1 has ID.GDG.FILE(+1)
Step2 has ID.GDG.FILE(+4)
PEND
Similarly, JCL has 2 steps in 2 separate procedure. What will be the output file names here ?
PROC starts
Step 1 has ID.GDG.FILE(+1)
PEND
PROC1 starts
Step2 has ID.GDG.FILE(+4)
PEND
Answer Posted / pankaj
Step 1 ID.GDG.FILE(-3)
Step2 ID.GDG.FILE(0)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to alter the parameters for the existing gdg?
How do you access an uncatalogued dataset in a jcl?
What is the purpose of disp parameter?
Explain the job statement in jcl?
Give the syntax of job specifying jcl statement.
Is their any set of rules for dd? Explain.
Differentiate between addressing mode and run mode.
what is the JCL statement consists of?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
What do you know about jcl?
What are the 2 types of parameters in dd statement?
Mention the types of job control statements?
Explain about LMFREE�free data set from its association with data ID
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
What is the purpose of the dd keylen parameter?