DBA Data[Home] [Help]

APPS.OE_LINE_ADJ_UTIL dependencies on QP_UTIL_PUB

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

6557:
6558: /*----------------------------------------------------------------------*/
6559: --Process_Cancelled_Lines. This is performance fix on cancel line
6560: --in which we either combine all events to call pricing engine once
6561: --or not calling at all depending on the output of QP_UTIL_PUB.Get_Order_Lines_Status
6562: /*----------------------------------------------------------------------*/
6563:
6564: Procedure Process_Cancelled_Lines(p_x_new_line_rec In Oe_Order_Pub.line_rec_type, p_ordered_quantity In Number) Is
6565: --bug7491829 added p_ordered_quantity

Line 6567: l_order_status_rec QP_UTIL_PUB.ORDER_LINES_STATUS_REC_TYPE;

6563:
6564: Procedure Process_Cancelled_Lines(p_x_new_line_rec In Oe_Order_Pub.line_rec_type, p_ordered_quantity In Number) Is
6565: --bug7491829 added p_ordered_quantity
6566:
6567: l_order_status_rec QP_UTIL_PUB.ORDER_LINES_STATUS_REC_TYPE;
6568: l_return_status Varchar2(5);
6569: l_event_str Varchar2(25);
6570: --
6571: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

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

6587:
6588: -- bug 9728497 start
6589: -- modified below for p_x_new_line_rec.header_id and p_x_new_line_rec.line_id
6590: -- being passed on to call the overloaded function.
6591: -- QP_UTIL_PUB.Get_Order_Lines_Status('BATCH,BOOK',l_order_status_rec);
6592: QP_UTIL_PUB.Get_Order_Lines_Status(p_event_code => 'BATCH,BOOK',
6593: p_header_id => p_x_new_line_rec.header_id,
6594: p_line_id => p_x_new_line_rec.line_id,
6595: x_order_status_rec =>l_order_status_rec);

Line 6592: QP_UTIL_PUB.Get_Order_Lines_Status(p_event_code => 'BATCH,BOOK',

6588: -- bug 9728497 start
6589: -- modified below for p_x_new_line_rec.header_id and p_x_new_line_rec.line_id
6590: -- being passed on to call the overloaded function.
6591: -- QP_UTIL_PUB.Get_Order_Lines_Status('BATCH,BOOK',l_order_status_rec);
6592: QP_UTIL_PUB.Get_Order_Lines_Status(p_event_code => 'BATCH,BOOK',
6593: p_header_id => p_x_new_line_rec.header_id,
6594: p_line_id => p_x_new_line_rec.line_id,
6595: x_order_status_rec =>l_order_status_rec);
6596: -- bug 9728497 end

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

6600: --line has no effect since the quantity is 0. Therefore, only pass
6601: --all the lines to pricing engine when all_lines_flag = 'Y'
6602: ----------------------------------------------------------------------
6603: IF l_debug_level > 0 THEN
6604: oe_debug_pub.add( ' ALL LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.ALL_LINES_FLAG ) ;
6605: oe_debug_pub.add( ' CHANGED LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.CHANGED_LINES_FLAG ) ;
6606: oe_debug_pub.add( ' SUMMARY LINE FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.SUMMARY_LINE_FLAG ) ;
6607: END IF;
6608:

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

6601: --all the lines to pricing engine when all_lines_flag = 'Y'
6602: ----------------------------------------------------------------------
6603: IF l_debug_level > 0 THEN
6604: oe_debug_pub.add( ' ALL LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.ALL_LINES_FLAG ) ;
6605: oe_debug_pub.add( ' CHANGED LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.CHANGED_LINES_FLAG ) ;
6606: oe_debug_pub.add( ' SUMMARY LINE FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.SUMMARY_LINE_FLAG ) ;
6607: END IF;
6608:
6609:

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

6602: ----------------------------------------------------------------------
6603: IF l_debug_level > 0 THEN
6604: oe_debug_pub.add( ' ALL LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.ALL_LINES_FLAG ) ;
6605: oe_debug_pub.add( ' CHANGED LINES FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.CHANGED_LINES_FLAG ) ;
6606: oe_debug_pub.add( ' SUMMARY LINE FLAG RETURNED FROM QP_UTIL_PUB:'||L_ORDER_STATUS_REC.SUMMARY_LINE_FLAG ) ;
6607: END IF;
6608:
6609:
6610: