DBA Data[Home] [Help]

PACKAGE: APPS.OE_ACCOUNTING

Source


1 PACKAGE OE_ACCOUNTING AUTHID CURRENT_USER AS
2 /* $Header: OEXACCTS.pls 115.1 99/08/23 10:48:57 porting sh $ */
3 
4 G_PKG_NAME       CONSTANT VARCHAR2(30) := 'OE_ACCOUNTING';
5 
6   -----------------------------------------------------------------
7   --
8   -- Function Name: Get_Uninvoiced_Commitment_Bal
9   -- Parameter:     p_customer_trx_id.
10   -- Return   :     Number.
11   --
12   -- The purpose of this function is to calculate the uninvoiced
13   -- commitment balance for a given commitment_id, in Order Entry.
14   -- This function is called by Account Receivables.
15   -- This function is provided by OE for interoperability purpose
16   -- between old OE and new OE.
17   --
18   -- total uninvoiced commitment balance =
19   --     total of order lines associated with a particular commitment
20   --		that are not interfaced to AR yet.
21   --
22   ------------------------------------------------------------------
23   FUNCTION Get_Uninvoiced_Commitment_Bal
24 	(p_customer_trx_id IN NUMBER
25 	)
26   RETURN NUMBER;
27 --  pragma restrict_references( get_uninvoiced_commitment_bal, WNDS,WNPS);
28 
29 
30 END OE_ACCOUNTING;