How to pass the temp dataset form one JOB step to another?
Answers were Sorted based on User's Feedback
Answer / guest
By specifying the DISP as PASS for the temp dataset
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / devang
By coding DISP=(,PASS,) on DD statement the dataset is
passed to the next step.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / kumar
By coding DISP=PASS,Delete on dd statement,it passes the
dataset to
another dataset.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / satyasivaji.ch
By coding DISP=PASS,on dd statement,it passes the dataset to
another dataset.
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / shridhar
DISP=(NEW,PASS)
DISP=SHR/(MOD,DELETE,DELETE) ETC.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / kiran
What is the meaning of 'Passing from one step to another step'?
| Is This Answer Correct ? | 0 Yes | 2 No |
Name the system library from which modules are retrieved at execution
Can you delete the GDG base without deleting GDG generations ?
What is the function of dd disp parameter?
If i have defined an temperory dataset in step2, how can i call back or use the same dataset in step5 of the same job
What are three parameters you can specify on Job statement as well as on exec stmt ?
What is the function of dd name parameter with a 2 part structure; audit.report?
I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter
What are the parameter in the job card wihtout which job won't run........
In SPACE,what is directory,RLSE
When output dataset space is required, what quantity categories are used?
THERE IS ONE STEP AS BELOW: //STEPJS060 EXEC PGM=XYX, COND=((200,EQ,JS010),(0,NE,JS020.C),EVEN) COULD ANY ONE EXPLAIN HOW COND PARAMETER WORKS HERE? I AM CONFUSED BECOZ OF "EVEN".
What is the motivation behind coding class parameter in job statement?