Hi,
In the Code contents bar (Tools/Code contents) only top-most declarations are displayed.
Code example from bellow would result in only proc_Parent being displayed on the list.
In the Code contents bar (Tools/Code contents) only top-most declarations are displayed.
Code example from bellow would result in only proc_Parent being displayed on the list.
Code:
CREATE OR REPLACE PACKAGE BODY my_Body IS
PROCEDURE proc_Parent(p_1 NUMBER) IS
PROCEDURE proc_Child(p_1 NUMBER) IS
BEGIN
NULL;
END proc_Child;
BEGIN
NULL;
END proc_Parent;
END my_Body;