S. Studeny
Member²
Hi.
Code Assistant is not able to assist inside package body with pl/sql type defined in package specification.
If you want to write procedure proc1 below and use assistant to supply param1 type, it will not work.
TEST PACKAGE:
create or replace package pkg_test is
type t_row is record (
per_id number,
orgunitid number
);
type t_tab is table of t_row;
end;
/
create or replace package body pkg_test is
procedure proc1 (param1 t_tab) is
begin
null;
end;
end;
/
It is bug or missing feature in PL/SQL Dev. 10?
Best Regards,
Stanislav
Code Assistant is not able to assist inside package body with pl/sql type defined in package specification.
If you want to write procedure proc1 below and use assistant to supply param1 type, it will not work.
TEST PACKAGE:
create or replace package pkg_test is
type t_row is record (
per_id number,
orgunitid number
);
type t_tab is table of t_row;
end;
/
create or replace package body pkg_test is
procedure proc1 (param1 t_tab) is
begin
null;
end;
end;
/
It is bug or missing feature in PL/SQL Dev. 10?
Best Regards,
Stanislav