DBA Data[Home] [Help]

PACKAGE: APPS.PA_FUND_REVAL_UTIL

Source


1 PACKAGE PA_FUND_REVAL_UTIL AUTHID CURRENT_USER AS
2 --$Header: PAXFRUTS.pls 115.2 2002/08/21 22:31:03 jpaulraj noship $
3 
4 -- Package Variables
5 
6 PROCEDURE log_message(p_message IN VARCHAR2);
7 
8 -- Function   :  Valid_Include_Gains_Losses
9 -- Parameters :  Org_Id
10 -- Purpose    :  Function to check  whether user can modify
11 --		 include gains and losses option or not
12 --		 If the function returns Y then user should not able to
13 --               Modify it.
14 --		 This should be called only when disable the option
15 
16 FUNCTION Valid_Include_Gains_Losses(p_org_id IN NUMBER)
17     RETURN VARCHAR2;
18 
19 -- Function   :  Is_Ou_Include_Gains_Losses
20 -- Parameters :  Org_Id
21 -- Purpose    :  Function to check  whether Implementations level
22 --		 include gains and losses option is enabled or not
23 
24 FUNCTION Is_OU_Include_Gains_Losses(p_org_id IN NUMBER)
25     RETURN VARCHAR2;
26 
27 -- Function   :  Is_PT_Include_Gains_Losses
28 -- Parameters :  Org_Id, project_type
29 -- Purpose    :  Function to check  whether Project type level
30 --		 include gains and losses option is enabled or not
31 
32 FUNCTION Is_PT_Include_Gains_Losses(p_org_id IN NUMBER,
33 				      p_project_type IN VARCHAR2)
34     RETURN VARCHAR2;
35 
36 -- Function   :  Is_Ar_Installed
37 -- Parameters :  None
38 
39 FUNCTION Is_AR_Installed RETURN VARCHAR2;
40 -- Function   :  Get_Ar_Application_Id
41 -- Parameters :  None
42 
43 FUNCTION Get_AR_Application_Id RETURN NUMBER;
44 
45 END PA_FUND_REVAL_UTIL;