DBA Data[Home] [Help]

PACKAGE: APPS.OE_VALIDATE_LINE_SCREDIT

Source


1 PACKAGE OE_Validate_Line_Scredit AS
2 /* $Header: OEXLLSCS.pls 120.0 2005/06/01 00:30:05 appldev noship $ */
3 
4 Procedure Validate_LSC_QUOTA_TOTAL
5 ( x_return_status OUT NOCOPY VARCHAR2
6 
7   , p_line_id        IN NUMBER
8   );
9 
10 --  Procedure Entity
11 
12 PROCEDURE Entity
13 ( x_return_status OUT NOCOPY VARCHAR2
14 
15 ,   p_Line_Scredit_rec              IN  OE_Order_PUB.Line_Scredit_Rec_Type
16 ,   p_old_Line_Scredit_rec          IN  OE_Order_PUB.Line_Scredit_Rec_Type :=
17                                         OE_Order_PUB.G_MISS_LINE_SCREDIT_REC
18 );
19 
20 --  Procedure Attributes
21 
22 /* changed p_Line_Scredit_rec in the following procedure to p_Line_Scredit_rec to fix the bug 3006018 */
23 
24 PROCEDURE Attributes
25 ( x_return_status OUT NOCOPY VARCHAR2
26 
27 ,   p_Line_Scredit_rec              IN  OUT NOCOPY OE_Order_PUB.Line_Scredit_Rec_Type
28 ,   p_old_Line_Scredit_rec          IN  OE_Order_PUB.Line_Scredit_Rec_Type :=
29                                         OE_Order_PUB.G_MISS_LINE_SCREDIT_REC
30 );
31 
32 --  Procedure Entity_Delete
33 
34 PROCEDURE Entity_Delete
35 ( x_return_status OUT NOCOPY VARCHAR2
36 
37 ,   p_Line_Scredit_rec              IN  OE_Order_PUB.Line_Scredit_Rec_Type
38 );
39 
40 END OE_Validate_Line_Scredit;