Hi
i have below code in when-list-changed
If :Replst = 'PVTREP' Then
Declare
Type Param_table is table of varchar2(50) index by Binary_Integer;
Ptable Param_table;
Begin
:sqltext := 'SELECT .....';
Fetch_pack.Fetch_param(:sqltext,Ptable);
End;
End if
But I got the following error
wrong number or types of arguments in call to 'FETCH_PARAM'
Package Section
PACKAGE Fetch_Pack IS
Type Param_table is table of Varchar2(50) index by Binary_Integer;
Procedure Fetch_Param (sqltxt in out Char,Ptable Out Param_table);
END;
How to solve this issue please help me.
Kanish
[Updated on: Wed, 25 March 2009 00:00]
Report message to a moderator