DBA Data[Home] [Help]

APPS.OE_LINE_ADJ_UTIL dependencies on QP_UTIL_PUB

Line 6307: --or not calling at all depending on the output of QP_UTIL_PUB.Get_Order_Lines_Status

6303:
6304: /*----------------------------------------------------------------------*/
6305: --Process_Cancelled_Lines. This is performance fix on cancel line
6306: --in which we either combine all events to call pricing engine once
6307: --or not calling at all depending on the output of QP_UTIL_PUB.Get_Order_Lines_Status
6308: /*----------------------------------------------------------------------*/
6309:
6310: Procedure Process_Cancelled_Lines(p_x_new_line_rec In Oe_Order_Pub.line_rec_type, p_ordered_quantity In Number) Is
6311: --bug7491829 added p_ordered_quantity

Line 6313: l_order_status_rec QP_UTIL_PUB.ORDER_LINES_STATUS_REC_TYPE;

6309:
6310: Procedure Process_Cancelled_Lines(p_x_new_line_rec In Oe_Order_Pub.line_rec_type, p_ordered_quantity In Number) Is
6311: --bug7491829 added p_ordered_quantity
6312:
6313: l_order_status_rec QP_UTIL_PUB.ORDER_LINES_STATUS_REC_TYPE;
6314: l_return_status Varchar2(5);
6315: l_event_str Varchar2(25);
6316: --
6317: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

Line 6334: QP_UTIL_PUB.Get_Order_Lines_Status('BATCH,BOOK',l_order_status_rec);

6330: ------------------------------------------------------
6331: OE_GLOBALS.G_PRICE_FLAG := 'N';
6332:
6333:
6334: QP_UTIL_PUB.Get_Order_Lines_Status('BATCH,BOOK',l_order_status_rec);
6335: ----------------------------------------------------------------------
6336: --User has totally cancelled a line, price changes pertaining to this
6337: --line has no effect since the quantity is 0. Therefore, only pass
6338: --all the lines to pricing engine when all_lines_flag = 'Y'

Line 6341: oe_debug_pub.add( ' ALL LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.ALL_LINES_FLAG ) ;

6337: --line has no effect since the quantity is 0. Therefore, only pass
6338: --all the lines to pricing engine when all_lines_flag = 'Y'
6339: ----------------------------------------------------------------------
6340: IF l_debug_level > 0 THEN
6341: oe_debug_pub.add( ' ALL LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.ALL_LINES_FLAG ) ;
6342: oe_debug_pub.add( ' CHANGED LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.CHANGED_LINES_FLAG ) ;
6343: oe_debug_pub.add( ' SUMMARY LINE FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.SUMMARY_LINE_FLAG ) ;
6344: END IF;
6345:

Line 6342: oe_debug_pub.add( ' CHANGED LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.CHANGED_LINES_FLAG ) ;

6338: --all the lines to pricing engine when all_lines_flag = 'Y'
6339: ----------------------------------------------------------------------
6340: IF l_debug_level > 0 THEN
6341: oe_debug_pub.add( ' ALL LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.ALL_LINES_FLAG ) ;
6342: oe_debug_pub.add( ' CHANGED LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.CHANGED_LINES_FLAG ) ;
6343: oe_debug_pub.add( ' SUMMARY LINE FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.SUMMARY_LINE_FLAG ) ;
6344: END IF;
6345:
6346:

Line 6343: oe_debug_pub.add( ' SUMMARY LINE FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.SUMMARY_LINE_FLAG ) ;

6339: ----------------------------------------------------------------------
6340: IF l_debug_level > 0 THEN
6341: oe_debug_pub.add( ' ALL LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.ALL_LINES_FLAG ) ;
6342: oe_debug_pub.add( ' CHANGED LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.CHANGED_LINES_FLAG ) ;
6343: oe_debug_pub.add( ' SUMMARY LINE FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.SUMMARY_LINE_FLAG ) ;
6344: END IF;
6345:
6346:
6347: