DBA Data[Home] [Help]

APPS.OE_OE_FORM_CANCEL_LINE dependencies on OE_ORDER_PVT

Line 322: -- Call OE_Order_PVT.Process_order for last set of rows

318: null;
319:
320: END LOOP;
321:
322: -- Call OE_Order_PVT.Process_order for last set of rows
323:
324: IF l_debug_level > 0 THEN
325: oe_debug_pub.add( 'BEFORE CALLING PROCESSS ORDER LINES PROCEDURE' , 1 ) ;
326: END IF;

Line 531: oe_order_pvt.Header

527: l_header_rec.change_reason :=p_reason_code;
528: l_header_rec.change_comments :=p_cancellation_comments;
529: l_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
530:
531: oe_order_pvt.Header
532: ( p_validation_level => FND_API.G_VALID_LEVEL_NONE
533: , p_control_rec => l_control_rec
534: , p_x_header_rec => l_header_rec
535: , p_x_old_header_rec => l_old_header_rec

Line 555: OE_Order_PVT.Process_Requests_And_Notify

551:
552:
553: -- Api to call notify OC and Process Delayed Requests
554:
555: OE_Order_PVT.Process_Requests_And_Notify
556: ( p_process_requests => TRUE
557: , p_notify => TRUE
558: , x_return_status => l_return_status
559: , p_header_rec => l_header_rec

Line 823: -- Call OE_Order_PVT.Process_order

819:
820: x_return_status := FND_API.G_RET_STS_SUCCESS;
821:
822:
823: -- Call OE_Order_PVT.Process_order
824: IF l_debug_level > 0 THEN
825: oe_debug_pub.add( 'CALLING PROCESS ORDER' , 1 ) ;
826: END IF;
827: oe_order_pvt.Lines

Line 827: oe_order_pvt.Lines

823: -- Call OE_Order_PVT.Process_order
824: IF l_debug_level > 0 THEN
825: oe_debug_pub.add( 'CALLING PROCESS ORDER' , 1 ) ;
826: END IF;
827: oe_order_pvt.Lines
828: ( p_validation_level => FND_API.G_VALID_LEVEL_NONE
829: , p_control_rec => l_control_rec
830: , p_x_line_tbl => l_line_tbl
831: , p_x_old_line_tbl => l_old_line_tbl

Line 845: OE_Order_PVT.Process_Requests_And_Notify

841: ELSIF x_return_status = FND_API.G_RET_STS_ERROR THEN
842: RAISE FND_API.G_EXC_ERROR;
843: END IF;
844:
845: OE_Order_PVT.Process_Requests_And_Notify
846: ( p_process_requests => TRUE
847: , p_notify => TRUE
848: , x_return_status => x_return_status
849: , p_line_tbl => l_line_tbl