DBA Data[Home] [Help]

PACKAGE: APPS.GMS_BUDGET_BALANCE

Source


1 PACKAGE gms_budget_balance AUTHID CURRENT_USER AS
2 -- $Header: gmsfcups.pls 115.7 2003/01/02 15:56:56 rshaik ship $
3 -- Everest Funds Checker Main Routine
4 
5  Procedure update_gms_balance(x_project_id	IN  number,
6    			    x_award_id		IN  number,
7 				x_mode          IN  varchar2,
8 			    ERRBUF	  	OUT NOCOPY varchar2,
9 		   	    RETCODE	  	OUT NOCOPY varchar2);
10 
11   --Bug 2721095 : The following function is introduced to calculate PO's quantity billed
12   --              based on input parameters.
13 
14   FUNCTION get_po_qty_invoiced (p_po_distribution_id IN NUMBER,
15                                 p_po_quantity_billed NUMBER,
16                                 p_recalc VARCHAR2 ) RETURN NUMBER;
17 
18   PRAGMA RESTRICT_REFERENCES (get_po_qty_invoiced, WNDS);
19 
20 END gms_budget_balance;