How can a package procedure or function identify itself at runtime?
Hello All,I am working on creating a common logging package that will be used across multiple applications.
One of the things that I would for this package to do is identify the current SCHEMA, PACKAGE (OBJECT), and COMPONENT (FUNCTION, PROCEDURE) being executed when it is invoked.
I know that you can get the SCHEMA / PACKAGE (OBJECT) for the error stack when dealing with exceptions, but I need something that can be used in non-exception contexts as well.
Additionally, I need that additional level of detail - the individual function/procedure being executed - not just the SCHEMA / PACKAGE information.
0