Hi All,
How do I test a Function within Package having an IN parameter as record type? Please help with the script.
Below is my Function
t_record Declaration
TYPE t_record IS RECORD(
empNumber varchar(10),
orderNumber varchar(9),
actDateTime varchar(15),
actMet varchar(4),
errorCode varchar(10));
FUNCTION ProcessRequest(p_record IN t_record,
xmlString IN t_xml_string) RETURN NUMBER;
How do I test a Function within Package having an IN parameter as record type? Please help with the script.
Below is my Function
t_record Declaration
TYPE t_record IS RECORD(
empNumber varchar(10),
orderNumber varchar(9),
actDateTime varchar(15),
actMet varchar(4),
errorCode varchar(10));
FUNCTION ProcessRequest(p_record IN t_record,
xmlString IN t_xml_string) RETURN NUMBER;