DBA Data[Home] [Help]

PACKAGE: APPS.GML_GME_API_PVT

Source


1 PACKAGE GML_GME_API_PVT AUTHID CURRENT_USER AS
2 /*  $Header: GMLFGMES.pls 115.2 2004/02/23 20:46:08 lgao noship $
3  +=========================================================================+
4  |                Copyright (c) 2000 Oracle Corporation                    |
5  |                        TVP, Reading, England                            |
6  |                         All rights reserved                             |
7  +=========================================================================+
8  | FILENAME                                                                |
9  |    GMIURSVS.pls                                                         |
10  |                                                                         |
11  | DESCRIPTION                                                             |
12  |     This package contains private utilities  relating to OPM            |
13  |     reservation.                                                        |
14  |                                                                         |
15  |                                                                         |
16  | HISTORY                                                                 |
17  |     Aug-18-2003  Liping Gao Created                                     |
18  +=========================================================================+
19   API Name  : GML_GME_API_PVT
20   Type      : Private
21   Function  : This package contains Private API procedures used to
22               OPM reservation for a batch.
23   Pre-reqs  : N/A
24   Parameters: Per function
25 
26   Current Vers  : 1.0
27 
28 */
29 
30  G_NOT_TO_DELETE    Number(5) := 0;    -- For lot status not orderable only
31  G_NOT_TO_NOTIFY    Number(5) := 0;    -- For lot status not orderable only
32 
33  PROCEDURE process_om_reservations
34  (
35     P_from_batch_id          IN  NUMBER default null
36   , P_batch_line_rec         IN  GML_BATCH_OM_UTIL.batch_line_rec
37   , P_Gme_trans_row          IN  ic_tran_pnd%rowtype
38   , P_batch_action           IN  VARCHAR2
39   , x_return_status          OUT NOCOPY VARCHAR2
40  );
41 END GML_GME_API_PVT;