What is the difference between a symbolic and an override in
executing a PROC?

Answers were Sorted based on User's Feedback



What is the difference between a symbolic and an override in executing a PROC?..

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

What is the difference between a symbolic and an override in executing a PROC?..

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

Post New Answer

More JCL Interview Questions

what happens if job falls in loop ? how to resolve it ?

3 Answers   Patni,


can any one plzzzzzz tell the jcl code for creating ps using idcams

2 Answers   Fiserv,


What is DSNDB06 ?

1 Answers  


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

8 Answers  


how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?

0 Answers   IBM,






Is there any command to check wether the ps file is in sorted order?

4 Answers  


in catalog procedure i have step1 dd dsn=filea dd dsn=fileb dd dsn=filec ur concatenaning all the files. but i need to override fileb with file 2 ? can anyone give the ans pls for ths

1 Answers   DELL,


Explain about LMCOPY -

1 Answers  


using cursor how can you fetch more than one record into a variable

3 Answers   Syntel,


I have a Symbolic Parameter which can have a value say 01 or 02 etc. Now consider i have another Symbolic parameters which is used to get 3 digit code of months (JAN, FEB, etc) but for that i need to check the first symbolic parameter's value and provide its corresponding month's name in the second symbolic parameter. Say IF sym1 = 01 then sym2='Jan' ENDIF etc... In JCL, IF condition is used for RC, ABEND purposes of a step etc. When i use Symbolic parameter in IF clause it is showing Error message. Is there a way to get the above result possible in JCL. If you could provide me with an example, i would understand it better.

0 Answers  


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

4 Answers   UST,


What is multithreading in jcl?

0 Answers  


Categories