Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how to override PROC? please give answer in details. Please
mention how to write it in JCL. Thanks in advance.

Answers were Sorted based on User's Feedback



how to override PROC? please give answer in details. Please mention how to write it in JCL. Thanks ..

Answer / kalpana dwivedi

For Override a proc, syntax is
Stepname.Ddname

For exapmle in a jcl proc is called as
//STEP1 EXEC=PROC1
and PROC1 contains a dd statement
//DD1 DSN=ESDSKXD.REXX.DATA,DISP=SHR

For overriding the DD1 of PROC1, syntax would be:
//STEP1.DD1 DSN=ESDSKXD.REXX.DATA,DISP=SHR

Is This Answer Correct ?    14 Yes 2 No

how to override PROC? please give answer in details. Please mention how to write it in JCL. Thanks ..

Answer / heman

Amra, giving a new library in JCLLIB is however possible.
My understanding of the question asked and my query too is,
whether we can provide an JCL override to the called PROC
in a PROC. Please advise if you have solution. Thanks.

Is This Answer Correct ?    1 Yes 0 No

how to override PROC? please give answer in details. Please mention how to write it in JCL. Thanks ..

Answer / abhilash

What you want to override in a PROC?

Lets take an example

//STEPA EXEC DEBASIS

inside the PROC DEBASIS we have

//STEPA001 EXEX .......,TIME=10
//DD01 DD .......

If you want to override a Step inside the PROC,
In JCL
//STEPA EXEC DEBASIS,TIME.STEPA001=20


If you want to override a DD statement
In JCL
//STEPA EXEC DEBASIS
//STEPA001.DD01 DD parameter=value

Is This Answer Correct ?    1 Yes 0 No

how to override PROC? please give answer in details. Please mention how to write it in JCL. Thanks ..

Answer / amra

In



To use a different PROC, you use a different library in the
JCLLIB. Your test PROC can be saved there with the same
name.

Is This Answer Correct ?    0 Yes 0 No

how to override PROC? please give answer in details. Please mention how to write it in JCL. Thanks ..

Answer / madhus s reddy

@kalpana: it is not possible to override the procedure. What
is the need of overriding the entire procedure?. you can
override only the dd statements in the procedures.

Is This Answer Correct ?    0 Yes 0 No

how to override PROC? please give answer in details. Please mention how to write it in JCL. Thanks ..

Answer / heman

I cannot totally agree with Dwivedi. But, to the question
whether we can override a PROC, still it is a question to
me. I haven't faced any such examples in my 4 years tenure.

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More JCL Interview Questions

How to search strings in multiple dataset with conditions 'string1 & string2'?

1 Answers   IBM,


What does the TIME parameter signify ? What does TIME=1440 mean ?

6 Answers   Accenture, TCS,


What is difference between Return Code, user completion code, Abend code and reason Code?

2 Answers   IBM, Satyam, Wipro,


What is the significance of addrspc parameter in exec statement?

0 Answers  


List the different components of jcl statement?

0 Answers  


is it possible to submitt more than one job in job card in jcl? and if yes than is it necessary to have the jobs same name?

4 Answers   Accenture,


Is their any limit for data sets?

0 Answers  


Max generations in GDG??

15 Answers   Xansa,


Definition of COND parameter in JCL

5 Answers   TCS,


What do you understand by the term notcat 2 – gs?

0 Answers  


can we bowse or edit the GDG dataset if it is a tape entry?

4 Answers  


Hi, Say I have 10 flat files and I want to copy all these 10 flat files to a GDG versions flat files (I have GDG base: FDWS01.TEST.RESTORE) in one shot. Can we do that in one shot using a JCL. May be by using IEBGENER. It's a bit urgent. So anyone's fast rely would be appreciated.. Thanks in advance.. 10 flat files ----------------------------------- FDWS01.SUB.RESTORE1 FDWS01.SUB.RESTORE2 FDWS01.SUB.RESTORE3 ; ; FDWS01.SUB.RESTORE10 TO GDG versions ----------------------- FDWS01.TEST.RESTORE.G0001V00 FDWS01.TEST.RESTORE.G0002V00 FDWS01.TEST.RESTORE.G0003V00 ; ; FDWS01.TEST.RESTORE.G0010V00

4 Answers  


Categories