DBA Data[Home] [Help]

PACKAGE: APPS.OE_VALIDATE_PRICE_LIST_LINE

Source


1 PACKAGE OE_Validate_Price_List_Line AUTHID CURRENT_USER AS
2 /* $Header: OEXLPRLS.pls 115.2 99/10/14 22:17:05 porting ship  $ */
3 
4 --  Procedure Entity
5 
6 PROCEDURE Entity
7 (   x_return_status                 OUT VARCHAR2
8 ,   p_PRICE_LIST_LINE_rec           IN  OE_Price_List_PUB.Price_List_Line_Rec_Type
9 ,   p_old_PRICE_LIST_LINE_rec       IN  OE_Price_List_PUB.Price_List_Line_Rec_Type :=
10                                         OE_Price_List_PUB.G_MISS_PRICE_LIST_LINE_REC
11 );
12 
13 
14 ---- New Added
15 PROCEDURE Check_PLL_Duplicates
16 (   x_return_status                 OUT VARCHAR2
17 ,   p_PRICE_LIST_LINE_rec           IN  OE_Price_List_PUB.Price_List_Line_Rec_Type
18 ,   p_old_PRICE_LIST_LINE_rec       IN  OE_Price_List_PUB.Price_List_Line_Rec_Type
19 );
20 
21 
22 --- Geresh
23 --  Procedure Attributes
24 
25 PROCEDURE Attributes
26 (   x_return_status                 OUT VARCHAR2
27 ,   p_PRICE_LIST_LINE_rec           IN  OE_Price_List_PUB.Price_List_Line_Rec_Type
28 ,   p_old_PRICE_LIST_LINE_rec       IN  OE_Price_List_PUB.Price_List_Line_Rec_Type :=
29                                         OE_Price_List_PUB.G_MISS_PRICE_LIST_LINE_REC
30 );
31 
32 --  Procedure Entity_Delete
33 
34 PROCEDURE Entity_Delete
35 (   x_return_status                 OUT VARCHAR2
36 ,   p_PRICE_LIST_LINE_rec           IN  OE_Price_List_PUB.Price_List_Line_Rec_Type
37 );
38 
39 END OE_Validate_Price_List_Line;