Rick Wiker
Member
How do I pass global variables into a package in the debug Test window? I have the following situation:
pa_api_wo_cds_info.p_param1:=
_param1;
pa_api_wo_cds_info.add_cds_line_item(
_user_name
,
_work_order_num ,
_req_deliv_dt);
where pa_api_wo_cds_info is the package name and add_cds_line_item is a procedure within the package.
pa_api_wo_cds_info.p_param1:=
pa_api_wo_cds_info.add_cds_line_item(
,
where pa_api_wo_cds_info is the package name and add_cds_line_item is a procedure within the package.