How to disable a package.. [message #465775] |
Thu, 15 July 2010 10:11 |
suman.g
Messages: 89 Registered: June 2009
|
Member |
|
|
Hi All,
Please suggest me how to disable a package??
For some of my testing I need to disable the package and after the testing I need to enable again.
I tried with dropping this is package but my application is giving error. Means dropping package is not working.
Thanks in advance..
Warm Regards,
Soniya
|
|
|
|
|
Re: How to disable a package.. [message #465781 is a reply to message #465778] |
Thu, 15 July 2010 10:32 |
Solomon Yakobson
Messages: 3303 Registered: January 2010 Location: Connecticut, USA
|
Senior Member |
|
|
select sid
from v$access
where owner = <package-owner>
and object = <package-name>
/
will give you list of sessions using the package (sessions that instantiated the package to be precise).
SY.
|
|
|
Re: How to disable a package.. [message #465789 is a reply to message #465781] |
Thu, 15 July 2010 10:51 |
suman.g
Messages: 89 Registered: June 2009
|
Member |
|
|
Thank you all for your quick replies..
For one of my issue Oracle has suggested to disable package 'POR_CUSTOM_PKG' in cloned instance and test the issue.
Now I have to disable the package ..but I don't know how to go about this..
|
|
|
|
|
Re: How to disable a package.. [message #465806 is a reply to message #465799] |
Thu, 15 July 2010 11:16 |
suman.g
Messages: 89 Registered: June 2009
|
Member |
|
|
Yes, this action plan was given in TAR.
First they asked below questions (with my answers)..
• For certain users? Maybe we can narrow it down somehow.
- No.
• Do they have personalization enabled on Non Catalog Request page or any of
the Requisition Checkout pages?
- Yes.
• Is the POR_CUSTOM_PKG enabled?.
- Yes.
Later they asked
update1 -'Do you get the same results when the personalizations are turned off and the POR_CUSTOM_PKG is disabled?'
update2 -'What happens when the POR_CUSTOM_PKG is disabled? Does it work properly?'
Now I have to peform to check above..
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: How to disable a package.. [message #473354 is a reply to message #465918] |
Fri, 27 August 2010 08:54 |
suman.g
Messages: 89 Registered: June 2009
|
Member |
|
|
Hi All,
FYI..
There is no such way to disable a packge.
To disable the package 'POR_CUSTOM_PKG', we need to set need to 'NO' the following profiles:
POR: Enable Req Distribution Customization
POR: Enable Req Header Customization
POR: Enable Req Line Customization
|
|
|
|
Re: How to disable a package.. [message #473388 is a reply to message #473356] |
Fri, 27 August 2010 14:02 |
|
Alien
Messages: 292 Registered: June 1999
|
Senior Member |
|
|
Hi,
Let me clarify things a bit. This is about Oracle eBS.
The package in question is used for customizing the application. You can put in code that will be called at certain points by the original application software. That way you do not have to change the original code, but you can still call your own custom code during processing.
By setting the profile options mentioned above, the custom code in the package will not be called by eBS anymore.
That is what is meant by 'disabling the package'.
Regards,
Arian
|
|
|