DBA Data[Home] [Help]

APPS.OE_OE_FORM_CANCEL_LINE dependencies on OE_ORDER_PVT

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

324: null;
325:
326: END LOOP;
327:
328: -- Call OE_Order_PVT.Process_order for last set of rows
329:
330: IF l_debug_level > 0 THEN
331: oe_debug_pub.add( 'BEFORE CALLING PROCESSS ORDER LINES PROCEDURE' , 1 ) ;
332: END IF;

Line 537: oe_order_pvt.Header

533: l_header_rec.change_reason :=p_reason_code;
534: l_header_rec.change_comments :=p_cancellation_comments;
535: l_header_rec.operation := OE_GLOBALS.G_OPR_UPDATE;
536:
537: oe_order_pvt.Header
538: ( p_validation_level => FND_API.G_VALID_LEVEL_NONE
539: , p_control_rec => l_control_rec
540: , p_x_header_rec => l_header_rec
541: , p_x_old_header_rec => l_old_header_rec

Line 561: OE_Order_PVT.Process_Requests_And_Notify

557:
558:
559: -- Api to call notify OC and Process Delayed Requests
560:
561: OE_Order_PVT.Process_Requests_And_Notify
562: ( p_process_requests => TRUE
563: , p_notify => TRUE
564: , x_return_status => l_return_status
565: , p_header_rec => l_header_rec

Line 834: -- Call OE_Order_PVT.Process_order

830:
831: x_return_status := FND_API.G_RET_STS_SUCCESS;
832:
833:
834: -- Call OE_Order_PVT.Process_order
835: IF l_debug_level > 0 THEN
836: oe_debug_pub.add( 'CALLING PROCESS ORDER' , 1 ) ;
837: END IF;
838: oe_order_pvt.Lines

Line 838: oe_order_pvt.Lines

834: -- Call OE_Order_PVT.Process_order
835: IF l_debug_level > 0 THEN
836: oe_debug_pub.add( 'CALLING PROCESS ORDER' , 1 ) ;
837: END IF;
838: oe_order_pvt.Lines
839: ( p_validation_level => FND_API.G_VALID_LEVEL_NONE
840: , p_control_rec => l_control_rec
841: , p_x_line_tbl => l_line_tbl
842: , p_x_old_line_tbl => l_old_line_tbl

Line 856: OE_Order_PVT.Process_Requests_And_Notify

852: ELSIF x_return_status = FND_API.G_RET_STS_ERROR THEN
853: RAISE FND_API.G_EXC_ERROR;
854: END IF;
855:
856: OE_Order_PVT.Process_Requests_And_Notify
857: ( p_process_requests => TRUE
858: , p_notify => TRUE
859: , x_return_status => x_return_status
860: , p_line_tbl => l_line_tbl