1 PACKAGE BODY OE_ORDER_PRICE_PVT1 AS
2 /* $Header: OEXVPRCB.pls 115.10 2003/10/20 07:25:30 appldev ship $ */
3
4 /*
5 -- Price_Line is the main Pricing Integration API
6 -- It can be used to Price an order, an order line, or multiple lines
7 Procedure Price_line(
8 p_Header_id IN NUMBER DEFAULT NULL
9 ,p_Line_id IN NUMBER DEFAULT NULL
10 ,px_line_Tbl IN OUT NOCOPY oe_Order_Pub.Line_Tbl_Type
11 ,p_Control_Rec IN OE_ORDER_PRICE_PVT.control_rec_type
12 ,p_Pricing_Events IN VARCHAR2
13 ,x_Return_Status OUT VARCHAR2
14 )
15 is
16 Begin
17 NULL;
18 End Price_Line;
19 */
20 end OE_ORDER_PRICE_PVT1;