DBA Data[Home] [Help]

PACKAGE: APPS.GMI_OM_UTIL

Source


1 PACKAGE GMI_OM_UTIL AUTHID CURRENT_USER AS
2 /*  $Header: GMIOMUTS.pls 115.2 2003/06/20 18:34:44 pkanetka noship $ */
3 /*
4  +=========================================================================+
5  |                Copyright (c) 2000 Oracle Corporation                    |
6  |                        TVP, Reading, England                            |
7  |                         All rights reserved                             |
8  +=========================================================================+
9  | FILENAME                                                                |
10  |    GMIOMUTS.pls                                                         |
11  |                                                                         |
12  | DESCRIPTION                                                             |
13  |     This package contains generic utilities relating to OPM and OM.     |
14  |                                                                         |
15  |                                                                         |
16  +=========================================================================+
17 */
18 
19 PROCEDURE GMI_GET_RMA_LOTS_QTY
20    ( p_original_line_rec                  IN  OE_Order_PUB.Line_Rec_Type
21    , p_reference_line_rec                 IN  OE_Order_PUB.Line_Rec_Type
22    , p_x_lot_serial_tbl                   IN  OUT NOCOPY OE_Order_PUB.Lot_Serial_Tbl_Type
23    , x_return_status                      OUT NOCOPY VARCHAR2
24    );
25 
26 FUNCTION GMI_GET_SECONDARY_QTY
27    (
28       p_delivery_detail_id  IN NUMBER,
29       p_primary_quantity   IN NUMBER
30    ) RETURN NUMBER;
31 
32 END GMI_OM_UTIL;