Hello All,
Is there a data dictionary view that show which package procedure is called from which line in the same package with another procedure?
For example p1 is called inside p2. I want to learn the line number of the invoked procedure.
Or is there any dictionary view that show package procedure start and end line number?
create package pkg1
is
procedure p1;
procedure p2;
end;
create package body pkg1
is
procedure p1
is
begin
dbms_output.put_line('p1');
end;
procedure p2
is
begin
p1;
end;
end;
Thanks