I have N Packetes with N Procedures, how can I get the name of the package that is executing the procedure, I know I can get the name of the procedure with $$ PLSQL_UNIT, but since I do the same but for the name of the package, this with the goal of putting together a string that has "NombrePackage.NombreProcedure"
Example, I have a PCKXYZ package with a procedure proc1, in the begin of the procedure proc1 I need some line that allows me to get the name of the package inside which is the procedure that I am executing, that is to say, return the name of the package PCKXYZ.
Thanks in advance and greetings to all.