How to refresh a Dynamic Exit.

2012-08-17 Thread Vernooij, CP - SPLXM
Hello, We have defined IEFUSI as dynamic exit and ADDed it in PROGxx. Now I have modified the module, UPDATEd LLA and want to activate the new version of the module, but I can't find a method to do so. All I can find is to make a private PROGxx member with an EXIT DELETE followed by an EXIT AD

Re: How to refresh a Dynamic Exit.

2012-08-17 Thread John Eells
Vernooij, CP - SPLXM wrote: Hello, We have defined IEFUSI as dynamic exit and ADDed it in PROGxx. Now I have modified the module, UPDATEd LLA and want to activate the new version of the module, but I can't find a method to do so. All I can find is to make a private PROGxx member with an EXIT DEL

Re: How to refresh a Dynamic Exit.

2012-08-17 Thread Elardus Engelbrecht
John Eells wrote: >> We have defined IEFUSI as dynamic exit and ADDed it in PROGxx. >> Now I have modified the module, UPDATEd LLA and want to activate the new >> version of the module, but I can't find a method to do so. All I can find is >> to make a private PROGxx member with an EXIT DELETE

Re: How to refresh a Dynamic Exit.

2012-08-17 Thread Vernooij, CP - SPLXM
"John Eells" wrote in message news:<502e44b6.90...@us.ibm.com>... > Vernooij, CP - SPLXM wrote: > > Hello, > > We have defined IEFUSI as dynamic exit and ADDed it in PROGxx. > > > > Now I have modified the module, UPDATEd LLA and want to activate the new > > version of the module, but I can't find

Re: How to refresh a Dynamic Exit.

2012-08-17 Thread Mark Zelden
On Fri, 17 Aug 2012 13:35:09 +0200, Vernooij, CP - SPLXM wrote: >Hello, > > > >We have defined IEFUSI as dynamic exit and ADDed it in PROGxx. > >Now I have modified the module, UPDATEd LLA and want to activate the new >version of the module, but I can't find a method to do so. All I can >find i

Re: How to refresh a Dynamic Exit.

2012-08-17 Thread Mark Zelden
On Fri, 17 Aug 2012 09:44:20 -0500, Mark Zelden wrote: >On Fri, 17 Aug 2012 13:35:09 +0200, Vernooij, CP - SPLXM > wrote: > >>Hello, >> >> >> >>We have defined IEFUSI as dynamic exit and ADDed it in PROGxx. >> >>Now I have modified the module, UPDATEd LLA and want to activate the new >>version

Re: How to refresh a Dynamic Exit.

2012-08-17 Thread Scott Ford
I agree with Mark, I also have done dynamic exit changes on busy systems without ill effect. You have to weight and decide what you will loose vs gain, IMHO .. Scott ford www.identityforge.com On Aug 17, 2012, at 10:48 AM, Mark Zelden wrote: > On Fri, 17 Aug 2012 09:44:20 -0500, Mark Zelden w

Re: How to refresh a Dynamic Exit.

2012-08-17 Thread ibmmain
> EXIT REPLACE EXITNAME(SYS.IEFUTL) MODNAME(IEFUTL) > DSNAME(SYS2.LINKLIB) This example implies that the new module is loaded from sys2.linklib. Which in turn means that the old exit (that probably had been loaded at IPL into LPA) is still the

Re: How to refresh a Dynamic Exit.

2012-08-19 Thread Peter Relson
>> EXIT REPLACE EXITNAME(SYS.IEFUTL) MODNAME(IEFUTL) >> DSNAME(SYS2.LINKLIB) >This example implies that the new module is loaded from sys2.linklib. Which in turn means that the old exit (that probably had been loaded at IPL >into LPA) is still there in LPA, has just become inactive. It al