DBA Data[Home] [Help]

APPS.ASO_PRICING_CORE_PVT dependencies on ASO_SHIPPING_INT

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

10536: END IF;
10537:
10538: If (p_control_rec.pricing_event = 'BATCH') OR (p_control_rec.pricing_event = 'ORDER') then
10539:
10540: l_hdr_shipping_charge := ASO_SHIPPING_INT.Get_Header_Freight_Charges(p_qte_header_rec.quote_header_id);
10541: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
10542: aso_debug_pub.add('ASO_PRICING_CORE_PVT:Before Update ASO_SHIPMENTS:l_hdr_shipping_charge: '
10543: ||l_hdr_shipping_charge,1,'Y');
10544: END IF;

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

10552:
10553: --Should not update the line levelfeight charges as in Calculate only call we only get updated order level modifiers
10554:
10555: If p_control_rec.calculate_flag <> QP_PREQ_GRP.G_CALCULATE_ONLY then
10556: /*Query the line table to pass it to ASO_SHIPPING_INT*/
10557: ls_qte_line_tbl := ASO_UTILITY_PVT.Query_Qte_Line_Rows(p_qte_header_rec.quote_header_id);
10558: FOR i IN 1..ls_qte_line_tbl.count LOOP
10559: l_line_shipping_charge := ASO_SHIPPING_INT.get_line_freight_charges
10560: (p_qte_header_rec.quote_header_id,ls_qte_line_tbl(i).quote_line_id);

Line 10559: l_line_shipping_charge := ASO_SHIPPING_INT.get_line_freight_charges

10555: If p_control_rec.calculate_flag <> QP_PREQ_GRP.G_CALCULATE_ONLY then
10556: /*Query the line table to pass it to ASO_SHIPPING_INT*/
10557: ls_qte_line_tbl := ASO_UTILITY_PVT.Query_Qte_Line_Rows(p_qte_header_rec.quote_header_id);
10558: FOR i IN 1..ls_qte_line_tbl.count LOOP
10559: l_line_shipping_charge := ASO_SHIPPING_INT.get_line_freight_charges
10560: (p_qte_header_rec.quote_header_id,ls_qte_line_tbl(i).quote_line_id);
10561: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
10562: aso_debug_pub.add('ASO_PRICING_CORE_PVT:Before Update ASO_SHIPMENTS:quote_line_id: '||ls_qte_line_tbl(i).quote_line_id
10563: ||' line charge for the quote line:'||l_line_shipping_charge,1,'Y');