DBA Data[Home] [Help]

PACKAGE: APPS.GMI_LOCT_INV_DB_PVT

Source


1 PACKAGE GMI_LOCT_INV_DB_PVT AUTHID CURRENT_USER AS
2 /*  $Header: GMIVLOCS.pls 115.6 2003/03/27 05:01:37 gmangari ship $
3  +=========================================================================+
4  |                Copyright (c) 2000 Oracle Corporation                    |
5  |                        TVP, Reading, England                            |
6  |                         All rights reserved                             |
7  +=========================================================================+
8  | FILENAME                                                                |
9  |     GMIVLOCS.pls                                                        |
10  |                                                                         |
11  | DESCRIPTION                                                             |
12  |     This package contains private definitions For DML Actions           |
13  |     For IC_LOCT_INV                                                     |
14  |                                                                         |
15  | HISTORY                                                                 |
16  |     12-JAN-2000  H.Verdding                                             |
17  +=========================================================================+
18   API Name  : GMI_LOCT_INV_DB_PVT
19   Type      : Public
20   Function  : This package contains private procedures used to create
21               IC_LOCT_INV transactions
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 /*  Define Procedures And Functions :   */
35 
36 FUNCTION UPDATE_IC_LOCT_INV
37 (
38   p_loct_inv       IN IC_LOCT_INV%ROWTYPE,
39   p_status_updated IN NUMBER,
40   p_qty_updated    IN NUMBER
41 )
42 RETURN BOOLEAN;
43 
44 FUNCTION INSERT_IC_LOCT_INV
45 (
46    p_loct_inv IN IC_LOCT_INV%ROWTYPE
47 )
48 RETURN BOOLEAN;
49 
50 END GMI_LOCT_INV_DB_PVT;