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 |
Explain dfsort utility?
How do you pass parameters to the program as the job is being executed ?
Why we us SYSTSIN DD with IKJEFT01 (TSO Utility) to execute a COBOL DB2 program? Why can't we use SYSIN DD?
What is the difference between primary and secondary allocations for a dataset?
Can we change the LIMIT of GDG?
What are isolation levels? Where do we need to specify them in compiling JCL?
what r the types of job control statements?
What is a COND parameter in JCL?
One dataset is creating in the step1 with LRECL of 133 and the same dataset is used in the next step in DISP=SHR mode, but while scanning the JCL the following error is thrwon. Please verify the below JCL $/SEPP030.PROVIDER DD DSN=Z1225BT.F5750PG9.F5910PRV.QC#A6868 //ERRORRPT DD DSN=F5910&ST&IN..F5910EPP.ERRORRPT.P&CYCDATE, --ERRORRPT DD DSN=F5910PG.F5910EPP.ERRORRPT.P, // DISP=&DISNCD,UNIT=&DELQ, -- DISP= (NEW,CATLG,DELETE),UNIT=DELQ, // SPACE=(TRK, (30,15),RLSE), // DCB=&DCB2 -- DCB= (PPG.METMODEL,BLKSIZE=0,LRECL=133,RECFM=FB) $/SEPP030.ERRORRPT DD DSN=Z1225BT.F5910EPP.ERRORRPT.AOUTPUT //SEPP040 EXEC PGM=FILEAID,COND= (0002,EQ,SEPP030) //SYSPRINT DD SYSOUT=* //SYSLIST DD SYSOUT=* //DD01 DD DSN=SYSCMN.PROD.CCLIB (F5910EP1),DISP=SHR $/SEPP040.DD01 DD DSN=Z1225BT.TEST.CCLIB (F5910EP1) E1 - DSS20791E - DATA SET 'Z1225BT.F5910EPP.ERRORRPT.AOUTPUT' HAS AN LRECL OF 133 COULD NOT BE OPENED BECAUSE THE CODED LRECL WAS 80. // DD DSN=F5910&ST&IN..F5910EPP.ERRORRPT.P&CYCDATE, -- DD DSN=F5910PG.F5910EPP.ERRORRPT.P, // DISP=SHR $/ DD DSN=Z1225BT.F5910EPP.ERRORRPT.AOUTPUT please find the error code in the above mentioned lines and please suggest me about the error and the solution for that.
Can we use COND=EVEN on a job card, when jobs are scheduled through scheduler?
How do you override a parameter in Positional parameters?
how will be submit 1 jcl by other jcl? means that how 'll submit one job by other job??