DBA Data[Home] [Help]

PACKAGE: APPS.OE_VALIDATE_HEADER

Source


1 PACKAGE OE_Validate_Header AUTHID CURRENT_USER AS
2 /* $Header: OEXLHDRS.pls 120.0.12000000.1 2007/01/16 21:53:23 appldev ship $ */
3 
4 --  Procedure Check_Book_Reqd_Attributes.
5 
6 PROCEDURE Check_Book_Reqd_Attributes
7 ( p_header_rec            IN OE_Order_PUB.Header_Rec_Type
8 , x_return_status         IN OUT NOCOPY /* file.sql.39 change */ VARCHAR2
9 );
10 
11 -- FUNCTION Is_Duplicate_PO_Number
12 -- Is_Duplicate_PO_Number: Returns TRUE if the PO number is
13 -- referenced on another order for this customer
14 
15 FUNCTION Is_Duplicate_PO_Number
16 ( p_cust_po_number                  IN VARCHAR2
17 , p_sold_to_org_id                  IN NUMBER
18 , p_header_id                       IN NUMBER
19 ) RETURN BOOLEAN;
20 
21 
22 --  Procedure Entity
23 
24 PROCEDURE Entity
25 (   x_return_status                 OUT NOCOPY /* file.sql.39 change */ VARCHAR2
26 ,   p_header_rec                    IN OUT NOCOPY /* file.sql.39 change */  OE_Order_PUB.Header_Rec_Type
27 /* modified the above line to fix the bug 2824240 */
28 ,   p_old_header_rec                IN  OE_Order_PUB.Header_Rec_Type :=
29                                         OE_Order_PUB.G_MISS_HEADER_REC
30 ,   p_validation_level              IN  NUMBER := FND_API.G_VALID_LEVEL_FULL
31 /* added the above line to fix the bug 2824240 */
32 );
33 
34 
35 --  Procedure Attributes
36 
37 PROCEDURE Attributes
38 (   x_return_status          OUT NOCOPY /* file.sql.39 change */ VARCHAR2
39 ,   p_x_header_rec           IN  OUT NOCOPY OE_Order_PUB.Header_Rec_Type
40 ,   p_old_header_rec         IN  OE_Order_PUB.Header_Rec_Type :=
41                                      OE_Order_PUB.G_MISS_HEADER_REC
42 ,   p_validation_level	    IN NUMBER := FND_API.G_VALID_LEVEL_FULL
43 
44 );
45 
46 
47 --  Procedure Entity_Delete
48 
49 PROCEDURE Entity_Delete
50 (   x_return_status                 OUT NOCOPY /* file.sql.39 change */ VARCHAR2
51 ,   p_header_rec                    IN  OE_Order_PUB.Header_Rec_Type
52 );
53 
54 
55 END OE_Validate_Header;