What is the difference between a symbolic and an override in
executing a PROC?
Answers were Sorted based on User's Feedback
Answer / guest
A symbolic is a PROC placeholder; the value for the symbolic
is supplied when the PROC is invoked, eg. &symbol=value. An
override replaces the PROC's statement with another one; it
substitutes for the entire statement.
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / s.sivarajan
overriding parameter:
In the overriding parameter we can override the existing
statements by dd statements after giving the data set name.
symbolic parameter:
In the symbolic parameter we can override the parameter by
giving the assign statement.
example:
ASSIGN PROC SIVA=SHR.
after statements
in the DISP parameter we can giving like this
DISP=&SIVA.
Then it take disposition is shareable(SHR).
Is This Answer Correct ? | 0 Yes | 2 No |
Explain about LMINIT - generate a data ID for a data set
How much is memory space involved, when we code BLOCKSIZE,TRK & CYL ?
how can we merge two input files from two different jobs into one output file ? Please ans any one ASAP?
Describe the JOB statement, its meaning, syntax and significant keywords?
Write a jcl to execute a job by 7 a.m on Jan 20,1986 ?
What is order of searching of the libraries in a 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.
i have 5 steps to execute in that i want to skip 3nd step and start execute from forth step how can u do this.
COND -> step1 . . step2, Step2, Executes if the CC of step1 is 0. But even if it is NOT 0 and if we dont give COND, will step2 be executed ?
What is a MODEL Paramater in GDG ?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
can anyone explain me about sort in jcl with inrec and outrec ?