DBA Data[Home] [Help]

APPS.ASO_PRICING_CORE_PVT dependencies on ASO_SHIPPING_INT

Line 10557: l_hdr_shipping_charge := ASO_SHIPPING_INT.Get_Header_Freight_Charges(p_qte_header_rec.quote_header_id);

10553: END IF;
10554:
10555: If (p_control_rec.pricing_event = 'BATCH') OR (p_control_rec.pricing_event = 'ORDER') then
10556:
10557: l_hdr_shipping_charge := ASO_SHIPPING_INT.Get_Header_Freight_Charges(p_qte_header_rec.quote_header_id);
10558: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
10559: aso_debug_pub.add('ASO_PRICING_CORE_PVT:Before Update ASO_SHIPMENTS:l_hdr_shipping_charge: '
10560: ||l_hdr_shipping_charge,1,'Y');
10561: END IF;

Line 10573: /*Query the line table to pass it to ASO_SHIPPING_INT*/

10569:
10570: --Should not update the line levelfeight charges as in Calculate only call we only get updated order level modifiers
10571:
10572: If p_control_rec.calculate_flag <> QP_PREQ_GRP.G_CALCULATE_ONLY then
10573: /*Query the line table to pass it to ASO_SHIPPING_INT*/
10574: ls_qte_line_tbl := ASO_UTILITY_PVT.Query_Qte_Line_Rows(p_qte_header_rec.quote_header_id);
10575: FOR i IN 1..ls_qte_line_tbl.count LOOP
10576: l_line_shipping_charge := ASO_SHIPPING_INT.get_line_freight_charges
10577: (p_qte_header_rec.quote_header_id,ls_qte_line_tbl(i).quote_line_id);

Line 10576: l_line_shipping_charge := ASO_SHIPPING_INT.get_line_freight_charges

10572: If p_control_rec.calculate_flag <> QP_PREQ_GRP.G_CALCULATE_ONLY then
10573: /*Query the line table to pass it to ASO_SHIPPING_INT*/
10574: ls_qte_line_tbl := ASO_UTILITY_PVT.Query_Qte_Line_Rows(p_qte_header_rec.quote_header_id);
10575: FOR i IN 1..ls_qte_line_tbl.count LOOP
10576: l_line_shipping_charge := ASO_SHIPPING_INT.get_line_freight_charges
10577: (p_qte_header_rec.quote_header_id,ls_qte_line_tbl(i).quote_line_id);
10578: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
10579: aso_debug_pub.add('ASO_PRICING_CORE_PVT:Before Update ASO_SHIPMENTS:quote_line_id: '||ls_qte_line_tbl(i).quote_line_id
10580: ||' line charge for the quote line:'||l_line_shipping_charge,1,'Y');