DBA Data[Home] [Help]

PACKAGE: APPS.OE_BULK_PRICE_PVT

Source


1 PACKAGE OE_BULK_PRICE_PVT AUTHID CURRENT_USER AS
2 /* $Header: OEBVPRCS.pls 120.0.12010000.2 2008/11/18 13:05:20 smusanna ship $ */
3 
4 -- added for HVOP Tax project
5 G_HEADER_INDEX   NUMBER;
6 G_BOOKING_FAILED BOOLEAN;
7 
8 ---------------------------------------------------------------------
9 -- PROCEDURE Insert_Adjustments
10 --
11 -- Inserts manual price adjustments for this bulk import batch,
12 -- from interface tables into oe_price_adjustments table.
13 -- This API should be called before Price_Orders to ensure that
14 -- manual adjustments are applied when pricing the order.
15 ---------------------------------------------------------------------
16 
17 PROCEDURE Insert_Adjustments
18         (p_batch_id            IN NUMBER
19         ,x_return_status       OUT NOCOPY /* file.sql.39 change */ VARCHAR2
20         );
21 
22 
23 ---------------------------------------------------------------------
24 -- PROCEDURE Price_Orders
25 --
26 -- Pricing for all orders in this batch.
27 -- IN parameter -
28 -- p_header_rec: order headers in the batch
29 ---------------------------------------------------------------------
30 
31 PROCEDURE Price_Orders
32         (p_header_rec          IN OUT NOCOPY OE_BULK_ORDER_PVT.HEADER_REC_TYPE
33         ,p_process_tax        IN VARCHAR2 DEFAULT 'N'
34         ,x_return_status       OUT NOCOPY /* file.sql.39 change */ VARCHAR2
35         );
36 
37 PROCEDURE Update_Pricing_Attributes
38         (p_line_tbl          IN OE_ORDER_PUB.LINE_TBL_TYPE
39         );
40 
41 END OE_BULK_PRICE_PVT;