DBA Data[Home] [Help]

APPS.WSH_NEW_DELIVERIES_PVT dependencies on STANDARD

Line 318: ,nvl(p_delivery_info.delivery_type,'STANDARD')

314: x_delivery_id
315: ,x_name
316: ,nvl(p_delivery_info.planned_flag,'N')
317: ,nvl(p_delivery_info.status_code,'OP')
318: ,nvl(p_delivery_info.delivery_type,'STANDARD')
319: ,p_delivery_info.loading_sequence
320: ,p_delivery_info.loading_order_flag
321: ,p_delivery_info.initial_pickup_date
322: ,p_delivery_info.initial_pickup_location_id

Line 1150: -- Do the Proration only for the 'Standard' Deliveries.

1146: END IF;
1147: --
1148:
1149: -- "Proration of weight from Delivery to delivery lines" Project(Bug#4254552).
1150: -- Do the Proration only for the 'Standard' Deliveries.
1151:
1152: IF NVL(p_delivery_info.delivery_type, 'STANDARD')='STANDARD' AND NVL(p_delivery_info.PRORATE_WT_FLAG,'N')='Y'
1153: AND (nvl(l_diff_gross_wt,0) <> 0 OR nvl(l_diff_net_wt,0) <> 0) THEN --{
1154: --

Line 1152: IF NVL(p_delivery_info.delivery_type, 'STANDARD')='STANDARD' AND NVL(p_delivery_info.PRORATE_WT_FLAG,'N')='Y'

1148:
1149: -- "Proration of weight from Delivery to delivery lines" Project(Bug#4254552).
1150: -- Do the Proration only for the 'Standard' Deliveries.
1151:
1152: IF NVL(p_delivery_info.delivery_type, 'STANDARD')='STANDARD' AND NVL(p_delivery_info.PRORATE_WT_FLAG,'N')='Y'
1153: AND (nvl(l_diff_gross_wt,0) <> 0 OR nvl(l_diff_net_wt,0) <> 0) THEN --{
1154: --
1155: IF l_debug_on THEN
1156: WSH_DEBUG_SV.logmsg(l_module_name,'Calling program unit WSH_WV_UTILS.prorate_weight',WSH_DEBUG_SV.C_PROC_LEVEL);