INV_LABEL_PUB.print_label Erroring with wrong number or types of arguments in call to 'PRINT_LABEL'
Hello experts
Am i tried to execute below anonymous block got error
=======================
Am i tried to execute below anonymous block got error
=======================
Error report -
ORA-06550: line 9, column 1:
PLS-00306: wrong number or types of arguments in call to 'PRINT_LABEL'
ORA-06550: line 9, column 1:
PL/SQL: Statement ignored
06550. 00000 - "line %s, column %s:\n%s"
*Cause: Usually a PL/SQL compilation error.
*Action:
=============================
Anonymous Block
=============================
Anonymous Block
declare
l_return_status varchar2(1);
l_msg_count NUMBER;
l_msg_data VARCHAR2(4000);
l_label_status VARCHAR2(100);
begin
apps.INV_LABEL_PUB.print_label(
x_return_status =>l_return_status
,x_msg_count =>l_msg_count
,x_msg_data =>l_msg_data
,x_label_status =>l_label_status
0