DBA Data[Home] [Help]

PACKAGE: APPS.GMI_VALIDATE_ALLOCATION_PVT

Source


1 PACKAGE GMI_VALIDATE_ALLOCATION_PVT AS
2 /*  $Header: GMIVALVS.pls 120.0 2005/05/25 16:08:26 appldev noship $
3  +=========================================================================+
4  |                Copyright (c) 1999 Oracle Corporation                    |
5  |                        TVP, Reading, England                            |
6  |                         All rights reserved                             |
7  +=========================================================================+
8  | FILENAME                                                                |
9  |     GMIVALVS.pls                                                        |
10  |                                                                         |
11  | DESCRIPTION                                                             |
12  |     This package contains private procedures to validate the inputs     |
13  |     supplied to the auto allocation package.                            |
14  |                                                                         |
15  | HISTORY                                                                 |
16  |     15-DEC-1999  K.Y.Hunt                                               |
17  +=========================================================================+
18   API Name  : GMI_VALIDATE_ALLOCATION_PVT
19   Type      : Private
20   Function  : This package contains private procedures validating input
21               data supplied to the OPM auto allocation engine.
22   Pre-reqs  : N/A
23   Parameters: Per function
24 
25   Current Vers  : 1.0
26 
27   Previous Vers : 1.0
28 
29   Initial Vers  : 1.0
30   Notes
31 
32 */
33 
34 PROCEDURE VALIDATE_INPUT_PARMS
35 ( p_allocation_rec     IN  GMI_AUTO_ALLOCATE_PUB.gmi_allocation_rec
36 , x_ic_item_mst_rec    OUT NOCOPY ic_item_mst%ROWTYPE
37 , x_ic_whse_mst_rec    OUT NOCOPY ic_whse_mst%ROWTYPE
38 , x_allocation_rec     OUT NOCOPY GMI_AUTO_ALLOCATE_PUB.gmi_allocation_rec
39 , x_return_status      OUT NOCOPY VARCHAR2
40 , x_msg_count          OUT NOCOPY NUMBER
41 , x_msg_data           OUT NOCOPY VARCHAR2
42 );
43 
44 FUNCTION VALIDATE_WHO
45 ( p_user_id            IN  FND_USER.USER_ID%TYPE
46 , p_user_name          IN  FND_USER.USER_NAME%TYPE
47 )
48 RETURN BOOLEAN;
49 END GMI_VALIDATE_ALLOCATION_PVT;