DBA Data[Home] [Help]

PACKAGE: APPS.GMI_TRAN_CMP_PVT

Source


1 PACKAGE GMI_TRAN_CMP_PVT AUTHID CURRENT_USER AS
2 /* $Header: GMIVCMPS.pls 115.9 2002/10/29 18:27:32 jdiiorio ship $
3  +=========================================================================+
4  |                Copyright (c) 2000 Oracle Corporation                    |
5  |                        TVP, Reading, England                            |
6  |                         All rights reserved                             |
7  +=========================================================================+
8  | FILENAME                                                                |
9  |     GMIVCMPS.pls                                                        |
10  |                                                                         |
11  | DESCRIPTION                                                             |
12  |     This package contains private definitions For DML Actions           |
13  |     For IC_TRAN_CMP                                                     |
14  |                                                                         |
15  | HISTORY                                                                 |
16  |     26-May-2000 P.J.Schofield                                           |
17  |                 Cloaned from GMICPNDS.pls                               |
18  |     29-Oct-2002 J.DiIorio                                               |
19  |                 Bug#2643440 - 11.5.1J - Added nocopy.                   |
20  +=========================================================================+
21   API Name  : GMI_TRAN_CMP_PVT
22   Type      : Public
23   Function  : This package contains public procedures used to create
24               inventory transactions in IC_TRAN_CMP.
25   Pre-reqs  : N/A
26   Parameters: Per function
27 
28   Current Vers  : 1.0
29 
30   Previous Vers : 1.0
31 
32   Initial Vers  : 1.0
33   Notes
34 
35 */
36 
37 /*  Define Procedures And Functions :  */
38 
39 FUNCTION INSERT_IC_TRAN_CMP
40 (
41  p_tran_row           IN  IC_TRAN_CMP%ROWTYPE,
42  x_tran_row           OUT NOCOPY IC_TRAN_CMP%ROWTYPE
43 )
44 RETURN BOOLEAN;
45 
46 FUNCTION FETCH_IC_TRAN_CMP
47 (
48  p_tran_rec           IN   GMI_TRANS_ENGINE_PUB.ictran_rec,
49  x_tran_fetch_rec     OUT  NOCOPY GMI_TRANS_ENGINE_PUB.ictran_rec
50 )
51 RETURN BOOLEAN;
52 
53 END GMI_TRAN_CMP_PVT;