DBA Data[Home] [Help]

APPS.OE_MASS_CHANGE_PVT dependencies on OE_ORDER_PVT

Line 59: -- by calling Oe_Order_Pvt.Header for every header in p_sel_rec_tbl.

55: --bug4529937 end
56:
57: --===================================================================
58: -- PROCEDURE: Process_Order_Scalar : Performs mass change of header attributes
59: -- by calling Oe_Order_Pvt.Header for every header in p_sel_rec_tbl.
60: --
61: -- Caller : OE_MASSUPDATE.UpdateOrderAttributes (OEXOELIB.pld)
62: -- PARAMETERS:
63: -- p_sel_rec_tbl - List of selected header records for mass change.

Line 919: Oe_Order_Pvt.Header

915: l_control_rec.validate_entity := TRUE;
916: l_control_rec.write_to_DB := TRUE;
917: --End of bug 4882981
918:
919: Oe_Order_Pvt.Header
920: (
921: p_validation_level => FND_API.G_VALID_LEVEL_FULL
922: , p_init_msg_list => l_init_msg_list
923: , p_control_rec => l_control_rec

Line 1013: --{ SUCCESS from OE_ORDER_PVT.Header

1009:
1010: --End LOOP; /* end of FOR loop */
1011: -- moved execution of delayed request inside the for loop for bug 4882981
1012: IF p_return_status = FND_API.G_RET_STS_SUCCESS THEN
1013: --{ SUCCESS from OE_ORDER_PVT.Header
1014: BEGIN
1015: -- call to post_line_process is not needed for headers mass change
1016: /*
1017:

Line 1041: OE_Order_PVT.Process_Requests_And_Notify

1037:
1038: */
1039:
1040: --added call to PRN for bug 4882981
1041: OE_Order_PVT.Process_Requests_And_Notify
1042: ( p_process_requests => TRUE
1043: , p_notify => TRUE
1044: , x_return_status => l_return_status
1045: , p_old_header_rec => l_old_header_rec

Line 1155: --} SUCCESS from OE_ORDER_PVT.Header

1151: ROLLBACK TO SAVEPOINT Process_Order_Scalar;
1152:
1153: END ;
1154:
1155: --} SUCCESS from OE_ORDER_PVT.Header
1156: END IF;
1157: --}
1158: END LOOP ; /* end for loop */ -- end bug 4882981
1159: IS_MASS_CHANGE := 'F'; -- Added for ER 7509356

Line 1164: -- OE_ORDER_PVT.Lines so that lines belonging together like models and sets go

1160: end Process_Order_Scalar;
1161:
1162: -- 4020312
1163: -- Process_Line_Scalar has been changed to group lines together before calling
1164: -- OE_ORDER_PVT.Lines so that lines belonging together like models and sets go
1165: -- for processing at one go.
1166: Procedure Process_Line_Scalar
1167: ( p_num_of_records IN NUMBER
1168: , p_sel_rec_tbl IN Oe_Globals.Selected_Record_Tbl --MOAC PI

Line 2815: Oe_Order_Pvt.Lines

2811:
2812: -- bug 4339639
2813: OE_Versioning_Util.G_UI_CALLED := TRUE;
2814:
2815: Oe_Order_Pvt.Lines
2816: ( p_validation_level => FND_API.G_VALID_LEVEL_FULL,
2817: p_init_msg_list => l_init_msg_list,
2818: p_control_rec => l_control_rec,
2819: p_x_line_tbl => l_line_tbl,

Line 2854: OE_Order_PVT.Process_Requests_And_Notify

2850: ( p_control_rec => l_control_rec,
2851: p_x_line_tbl => l_line_tbl );
2852:
2853: -- added a call to PRN for bug 4882981
2854: OE_Order_PVT.Process_Requests_And_Notify
2855: ( p_process_requests => TRUE,
2856: p_notify => TRUE,
2857: x_return_status => l_return_status,
2858: p_old_line_tbl => l_old_line_tbl,