DBA Data[Home] [Help]

PACKAGE: APPS.OE_CNCL_VALIDATE_HEADER

Source


1 PACKAGE OE_CNCL_Validate_Header AUTHID CURRENT_USER AS
2 /* $Header: OEXVCHDS.pls 120.0 2005/06/01 01:17:39 appldev noship $ */
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 VARCHAR2
26 
27 ,   p_header_rec                    IN  OE_Order_PUB.Header_Rec_Type
28 );
29 
30 
31 --  Procedure Attributes
32 
33 PROCEDURE Attributes
34 ( x_return_status OUT NOCOPY VARCHAR2
35 
36 ,   p_x_header_rec           IN  OUT NOCOPY OE_Order_PUB.Header_Rec_Type
37 ,   p_validation_level	    IN NUMBER := FND_API.G_VALID_LEVEL_FULL
38 
39 );
40 
41 
42 
43 
44 
45 END OE_CNCL_Validate_Header;