DBA Data[Home] [Help]

PACKAGE: APPS.GMI_SUMM_INV_DB_PVT

Source


1 PACKAGE GMI_SUMM_INV_DB_PVT AUTHID CURRENT_USER AS
2 /*  $Header: GMIVSUMS.pls 115.4 2000/11/28 08:58:26 pkm ship      $
3  +=========================================================================+
4  |                Copyright (c) 2000 Oracle Corporation                    |
5  |                        TVP, Reading, England                            |
6  |                         All rights reserved                             |
7  +=========================================================================+
8  | FILENAME                                                                |
9  |     GMIVSUMS.pls                                                        |
10  |                                                                         |
11  | DESCRIPTION                                                             |
12  |     This package contains private definitions For DML Actions           |
13  |     For IC_SUMM_INV                                                     |
14  |                                                                         |
15  | HISTORY                                                                 |
16  |     12-JAN-2000  H.Verdding                                             |
17  +=========================================================================+
18   API Name  : GMI_SUMM_INV_DB_PVT
19   Type      : Public
20   Function  : This package contains private procedures used to create
21               IC_SUMM_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_SUMM_INV
37 (
38 p_summ_inv IN IC_SUMM_INV%ROWTYPE
39 )
40 RETURN BOOLEAN;
41 
42 FUNCTION INSERT_IC_SUMM_INV
43 (
44 p_summ_inv IN IC_SUMM_INV%ROWTYPE
45 )
46 RETURN BOOLEAN;
47 
48 /*  Should This be In HERE    */
49 
50 FUNCTION GET_LOT_ATTRIBUTES
51 (
52 p_lot_status IN  VARCHAR2,
53 x_lots_sts   OUT IC_LOTS_STS%ROWTYPE
54 )
55 RETURN BOOLEAN;
56 
57 
58 END GMI_SUMM_INV_DB_PVT;