DBA Data[Home] [Help]

PACKAGE: APPS.GML_RQ_DB_COMMON

Source


1 PACKAGE GML_RQ_DB_COMMON AUTHID CURRENT_USER AS
2 /* $Header: GMLRQXCS.pls 115.1 2002/12/04 00:03:12 mchandak noship $ */
3 
4 -- Start of comments
5 --+==========================================================================+
6 --|                   Copyright (c) 1998 Oracle Corporation                  |
7 --|                          Redwood Shores, CA, USA                         |
8 --|                            All rights reserved.                          |
9 --+==========================================================================+
10 --| FILENAME                                                               |
11 --|                                                                        |
12 --|   GMLRQXCB.pls       This package contains db procedures and functions |
13 --|                      required by REQUISITIONS                          |
14 --| DESCRIPTION                                                            |
15 --|                                                                        |
16 --|                                                                        |
17 --| DECLARATION                                                            |
18 --|                                                                        |
19 --|  get_opm_cost_price   Function to get opm cost for internal order for  |
20 --|                       opm item and process org		           |
21 --| MODIFICATION HISTORY                                                   |
22 --|                                                                        |
23 --|    09-JUL-2002      PBamb        Created.    			   |
24 --|                                                                        |
25 --+==========================================================================+
26 -- End of comments
27 
28 PROCEDURE get_opm_cost_price(	x_item_id IN NUMBER,
29 				x_org_id  IN NUMBER,
30 				x_doc_uom IN VARCHAR2,
31 				x_unit_price IN OUT NOCOPY NUMBER);
32 
33 
34 END GML_RQ_DB_COMMON;