PLS-00306
に直面している理由 エラーはNUMLIST
の非互換性です パッケージ仕様およびNUMLIST
で定義されているコレクションタイプ 匿名PL/SQLブロックで定義されたコレクション・タイプ。これら2つのコレクションタイプの定義は同じですが、互換性はありません。匿名のPL/SQLブロックで、宣言してからGETSERVICES_API
に渡す必要があります。 PKGCOMSUPPORT_SERVICE.NUMLIST
の変数をプロシージャします データ型。
create or replace package PKG as
type t_numlist is table of number index by varchar2(50);
procedure SomeProc(p_var in pkg.t_numlist);
end;
/
create or replace package body PKG as
procedure someproc(p_var in pkg.t_numlist) is
begin
null;
end;
end;
/
declare
type t_numlist is table of number index by varchar2(50);
l_var t_numlist;
begin
pkg.someproc(l_var);
end;
ORA-06550: line 5, column 3:
PLS-00306: wrong number or types of arguments in call to 'SOMEPROC'
declare
--type t_numlist is table of number index by varchar2(50);
l_var pkg.t_numlist;
begin
pkg.someproc(l_var);
end;
anonymous block completed