DBA Data[Home] [Help]

APPS.WSH_DELIVERY_AUTOCREATE dependencies on WSH_SHIPPING_PARAMS_PVT

Line 35: l_shipping_params WSH_SHIPPING_PARAMS_PVT.Parameter_Rec_Typ;

31:
32: l_autocreate_del_orders_flag varchar2(1);
33: l_error_code number := NULL;
34: l_error_text varchar2(2000) := NULL;
35: l_shipping_params WSH_SHIPPING_PARAMS_PVT.Parameter_Rec_Typ;
36: l_client_params inv_cache.ct_rec_type; -- LSP PROJECT
37:
38: --
39: l_debug_on BOOLEAN;

Line 148: WSH_SHIPPING_PARAMS_PVT.Get(p_organization_id => p_organization_id,

144: END IF;
145: RETURN;
146: END IF;
147: --
148: WSH_SHIPPING_PARAMS_PVT.Get(p_organization_id => p_organization_id,
149: x_param_info => l_shipping_params,
150: x_return_status => x_return_status);
151:
152:

Line 2064: l_param_info WSH_SHIPPING_PARAMS_PVT.Parameter_Rec_Typ;

2060: l_check_fte_inst VARCHAR2(1) := 'N'; -- used to check is FTE is installed or not
2061:
2062: -- bug 2691385
2063: l_detail_is_empty_cont VARCHAR2(1) := 'N';
2064: l_param_info WSH_SHIPPING_PARAMS_PVT.Parameter_Rec_Typ;
2065:
2066: l_attr_tab wsh_delivery_autocreate.grp_attr_tab_type;
2067: l_action_rec wsh_delivery_autocreate.action_rec_type;
2068: l_target_rec wsh_delivery_autocreate.grp_attr_rec_type;

Line 2499: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_SHIPPING_PARAMS_PVT.Get',WSH_DEBUG_SV.C_PROC_LEVEL);

2495: -- following code is common for parallel and non-parallel cases
2496: -- of creating a new delivery, up to the label SKIP_ITM_EXISTING_DEL.
2497:
2498: IF l_debug_on THEN
2499: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_SHIPPING_PARAMS_PVT.Get',WSH_DEBUG_SV.C_PROC_LEVEL);
2500: END IF;
2501:
2502: WSH_SHIPPING_PARAMS_PVT.Get(
2503: p_organization_id => l_delivery_info.organization_id,

Line 2502: WSH_SHIPPING_PARAMS_PVT.Get(

2498: IF l_debug_on THEN
2499: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_SHIPPING_PARAMS_PVT.Get',WSH_DEBUG_SV.C_PROC_LEVEL);
2500: END IF;
2501:
2502: WSH_SHIPPING_PARAMS_PVT.Get(
2503: p_organization_id => l_delivery_info.organization_id,
2504: x_param_info => l_param_info,
2505: x_return_status => l_return_status
2506: );

Line 3027: l_param_info WSH_SHIPPING_PARAMS_PVT.Parameter_Rec_Typ;

3023: TYPE line_org_type IS TABLE OF line_org_rec_type INDEX BY BINARY_INTEGER;
3024: l_line_warehouse_ids line_org_type;
3025: t_line_warehouse_id line_org_rec_type;
3026:
3027: l_param_info WSH_SHIPPING_PARAMS_PVT.Parameter_Rec_Typ;
3028:
3029: temp_ids wsh_util_core.id_tab_type;
3030: curr_warehouse_id NUMBER;
3031:

Line 3126: WSH_SHIPPING_PARAMS_PVT.Get(

3122: -- LSP PROJECT : Passing the value of autocreate_del_orders_flag from ORG is not
3123: -- required here as the defualting logic from ORG is already present
3124: -- in the create_hash API. It is a duplicate code and hence removing the same.
3125: /*
3126: WSH_SHIPPING_PARAMS_PVT.Get(
3127: p_organization_id => curr_warehouse_id,
3128: x_param_info => l_param_info,
3129: x_return_status => x_return_status
3130: );

Line 3219: WSH_SHIPPING_PARAMS_PVT.Get(

3215: -- LSP PROJECT : Passing the value of autocreate_del_orders_flag from ORG is not
3216: -- required here as the defualting logic from ORG is already present
3217: -- in the create_hash API. It is a duplicate code and hence removing the same.
3218: /*
3219: WSH_SHIPPING_PARAMS_PVT.Get(
3220: p_organization_id => curr_warehouse_id,
3221: x_param_info => l_param_info,
3222: x_return_status => l_return_status
3223: );