Global Variables

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:= :p_param1;
pa_api_wo_cds_info.add_cds_line_item(
:p_user_name
, :p_work_order_num , :p_req_deliv_dt);

where pa_api_wo_cds_info is the package name and add_cds_line_item is a procedure within the package.
 
I assume you want to set a global package variable before calling a package function/procedure? The Test Script is just a PL/SQL Block, so your example above should work just fine.
 
Back
Top