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 |
What happens if both JOBLIB & STEPLIB is specified ?
How to pass data to a program that is coded in an exec statement?
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
How are GDGs concatenated?
What are hierarchy levels in jcl?
Explain the function of //cntl statement?
wht do u mean by inrec and outrec ?
How to test thru JCL if any file(PS or VSAM) is empty or not. I do not want to use any COBOL prog or Ezytrieve and want to do using utility.
How do you submit a job for execution?
Name the system library from which modules are retrieved at execution
What is the difference between the JOBLIB and the STEPLIB statements?
If a field is declared as a comp-3 field and if we want to sort a dataset based on this field, then how will the sort card be??? e.g- if we want to sort by a field which is defined as a PIC X(5) then we will mention - sort fields=(1,5,ch,a). Likewise if a field is defined as PIC S9(10)COMP-3 then in this case how will the sort field be defined (because in this case a sign is also involved)???