DBA Data[Home] [Help]

PACKAGE: APPS.GMICOMN

Source


1 PACKAGE GMICOMN AUTHID CURRENT_USER AS
2 /* $Header: GMICOMNS.pls 115.3 2004/01/22 11:26:30 mkalyani noship $ */
3 /*
4  +==========================================================================+
5  |                   Copyright (c) 1998 Oracle Corporation                  |
6  |                          Redwood Shores, CA, USA                         |
7  |                            All rights reserved.                          |
8  +==========================================================================+
9  | FILE NAME                                                                |
10  |    GMICOMNB.pls                                                          |
11  |                                                                          |
12  | PACKAGE NAME                                                             |
13  |    GMIGCOMN                                                              |
14  |                                                                          |
15  | DESCRIPTION                                                              |
16  |    Created this new package to be used for common procedures             |
17  |    or functions that are used by the forms.                              |
18  |                                                                          |
19  | HISTORY                                                                  |
20  |    N.Vikranth  06/28/2002 BUG#2314294                                    |
21  |                Created this new package.                                 |
22  |    Ramakrishna 01/08/2004 BUG#3199418                                    |
23  |                Added the Get_Lotno function to include sort option    |
24  |                in Cycle Count Form.                                      |
25   +==========================================================================+
26 */
27 
28 FUNCTION Get_Itemno
29 (v_item_id NUMBER)
30 RETURN VARCHAR2;
31 
32 FUNCTION Get_Lotno
33 (v_lot_id NUMBER, v_item_id Number)
34 RETURN VARCHAR2;
35 
36 END GMICOMN;