Introduction
This Post illustrates steps required to Oracle 12c accessible by clause in Oracle EBS R12.
PACKAGE Helper authed Definer accessible BY(Good_Unit, BAD_UNIT
IS
PROCEDURE p;
END Helper;
PACKAGE body Good_Unit
IS
PROCEDURE p
IS
BEGIN
Helper.p();
…
END p;
END Good_Guy;
PACKAGE body Bad_Unit
IS
PROCEDURE p
IS
BEGIN
Helper.p();
…
END p;
END Bad_Guy;
Summary
This Post described the script Oracle 12c accessible by clause.
Got any queries?
Do drop a note by writing us at doyen.ebiz@gmail.com or use the comment section below to ask your questions.
Recent Posts