Pass the record type parameter using pl/sql in the package
I have a package in below in which I have used the record type now I want to test this package using a pl/sql block when I pass the value it errors out, can you guys help on how to test this package
spec of package
OR REPLACE PACKAGE APPS.xxace_ap_cms
AS
xx_invoice_rec_test is record
p_invoice_type VARCHAR2(30)
p_invoice_number VARCHAR2(30)
xx_invoice_tbl_test is table of xx_invoice_rec_test INDEX BY BINARY_INTEGER;
xxace_ap
in xx_invoice_tbl_test
p_out_success_1 out VARCHAR2
p_out_failure_2 out