How to find all java classes, a PL/SQL package depends on
Hi All,
I need a method/query to get for a PL/SQL package all referenced java
classes (or java stored procedures respectively). For example for
package FND_WEB_SEC the query should return WebSessionManagerProc (or
respectively: WebSessionManagerProc.decrypt,
WebSessionManagerProc.URLEncrypt, WebSessionManagerProc.URLDecrypt, ...)
-> Purpose:
I
have written a script for getting all dependencies (tables, views,
packages...) for my custom PL/SQL packages which helps setting up all
needed privileges for these packages... But the thing still missing is
getting the dependencies on java clases for setting grants like:
grant execute on "/3906534f_WebSessionManagerPro" to <custom_schema>;
Is there a chance to get this kind of information via db queries - or any other method?