Grant permissions to specific procedures/functions inside package
Hi
Oracle 12.1.0.2.0
If I have package P, and this package has functions and procedures defined:
CREATE OR REPLACE PACKAGE PASPROCEDURE F1 (ID IN NUMBER);PROCEDURE P1 (ID IN NUMBER);..END P;....
I know I can grant permissions to this specific package:
GRANT EXECUTE, DEBUG ON P TO <<role_name>>;
But is there a possibility that I can grant permissions to specific function or procedure inside this package P..?
Raul