DBA Data[Home] [Help]

PACKAGE: APPS.POR_APPRV_WF_UTIL_GRP

Source


1 PACKAGE POR_APPRV_WF_UTIL_GRP AUTHID CURRENT_USER AS
2 /* $Header: PORWFUTS.pls 115.1 2004/03/31 18:47:56 vkartik noship $ */
3 
4 /*===========================================================================
5   FUNCTION NAME:        get_po_number
6 
7   DESCRIPTION:          Gets the po number for the given line_location_id
8 
9   CHANGE HISTORY:       17-SEP-2003  sbgeorge     Created
10 ===========================================================================*/
11 FUNCTION get_po_number(p_line_location_id IN NUMBER) RETURN VARCHAR2;
12 
13 /*===========================================================================
14   FUNCTION NAME:        get_so_number
15 
16   DESCRIPTION:          Gets the sales order number for the given
17                         requisition_line_id
18 
19   CHANGE HISTORY:       17-SEP-2003  sbgeorge     Created
20 ===========================================================================*/
21 FUNCTION get_so_number(p_req_line_id IN NUMBER) RETURN NUMBER;
22 
23 /*===========================================================================
24   FUNCTION NAME:        get_cost_center
25 
26   DESCRIPTION:          Gets the cost_center for the given requisition_line_id
27 
28   CHANGE HISTORY:       17-SEP-2003  sbgeorge     Created
29 ===========================================================================*/
30 FUNCTION get_cost_center(p_req_line_id IN NUMBER) RETURN VARCHAR2 ;
31 
32 END POR_APPRV_WF_UTIL_GRP;