Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
OVERRIDING DATASET IN PROC

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL
Author Message
subhasis_50

Moderator


Joined: 09 Mar 2005
Posts: 367
Location: Earth

PostPosted: Thu May 26, 2005 9:53 am    Post subject: OVERRIDING DATASET IN PROC
Reply with quote

Hi,
I am calling a proc through JCL. In that proc there is a sort step which contains 10 datasets as input. My requirement is to override the last two datasets. That is no 9 & 10. How i can i code the override in JCL??
Back to top
View user's profile Send private message
References
avalanches

New User


Joined: 10 May 2005
Posts: 28

PostPosted: Thu May 26, 2005 12:50 pm    Post subject:
Reply with quote

Hi,

To override only the last 2 files, you have got to code the original 8 datasets in your override then you have to give the 2 files you wanna override.

Correct me if im wrong.
Back to top
View user's profile Send private message
Deepa.m
Warnings : 1

Active User


Joined: 28 Apr 2005
Posts: 88

PostPosted: Thu May 26, 2005 2:06 pm    Post subject:
Reply with quote

yes what avalaches says is right. We have to give all the 10 datasets again in the JCL as

procstepname.ddname dd dsn=...........(input dataset)
Back to top
View user's profile Send private message
SteveConway

New User


Joined: 26 May 2005
Posts: 30
Location: Northern VA, USA

PostPosted: Thu May 26, 2005 5:55 pm    Post subject: Re: OVERRIDING DATASET IN PROC
Reply with quote

You don't need to re-enter the first 8 DSNs, just put in a placeholder DD for them.
Remember that anything not overridden will be taken from the proc, which allows us to only change what we need to, like this:
Code:

//INPUTDSN   DD
//                  DD
//                  DD
//                  DD
//                  DD
//                  DD
//                  DD
//                  DD
//                  DD DSN=OVERRIDE.ONE
//                  DD DSN=OVERRIDE.TWO


Cheers,,,Steve
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> JCL All times are GMT + 6 Hours
Page 1 of 1