DBA Data[Home] [Help]

PACKAGE: APPS.PA_INSTALL

Source


1 PACKAGE PA_INSTALL AS
2 /* $Header: PAXINSS.pls 120.0 2005/05/30 09:18:54 appldev noship $ */
3 
4  FUNCTION is_pji_installed RETURN VARCHAR2;
5 
6  FUNCTION is_pji_licensed RETURN VARCHAR2;
7   pragma RESTRICT_REFERENCES (is_pji_licensed, WNDS);
8 -- This function returns the 'Y' if Project Intelligence is installed.
9 -- Otherwise, the function returns 'N'.
10 
11  FUNCTION is_billing_licensed RETURN VARCHAR2;
12   pragma RESTRICT_REFERENCES (is_billing_licensed, WNDS);
13 -- This function returns the 'Y' if Project Billing is installed.
14 -- Otherwise, the function returns 'N'.
15 
16 FUNCTION is_product_installed(p_product_short_name IN VARCHAR2) RETURN BOOLEAN;
17 -- The function will take the product short name as in parameter
18 -- and return TRUE if the product is installed.
19 
20  FUNCTION is_prm_licensed RETURN VARCHAR2;
21   pragma RESTRICT_REFERENCES (is_prm_licensed, WNDS);
22 -- This function returns 'Y' if Project Resource Management is installed.
23 -- Otherwise, the function returns 'N'.
24 
25  FUNCTION is_costing_licensed RETURN VARCHAR2;
26   pragma RESTRICT_REFERENCES (is_costing_licensed, WNDS);
27 -- This function returns the 'Y' if Project Costing is installed.
28 -- Otherwise, the function returns 'N'.
29 
30  FUNCTION is_pjt_licensed RETURN VARCHAR2;
31   pragma RESTRICT_REFERENCES (is_pjt_licensed, WNDS);
32 -- This function returns 'Y' if Project Tracking is installed.
33 -- Otherwise, the function returns 'N'.
34 
35  FUNCTION is_utilization_implemented RETURN VARCHAR2;
36    pragma RESTRICT_REFERENCES (is_utilization_implemented, WNDS);
37 -- This function returns 'Y' if there is any row in pa_utilization_options_all
38 -- table.Otherwise, the function returns 'N'
39 
40 FUNCTION is_ord_mgmt_installed RETURN VARCHAR2;
41    pragma RESTRICT_REFERENCES (is_ord_mgmt_installed, WNDS);
42 -- This function returns 'Y' if there is any row in pa_utilization_options_all
43 -- table.Otherwise, the function returns 'N'
44 
45 
46 END PA_INSTALL;