DBA Data[Home] [Help]

PACKAGE BODY: APPS.PA_PO_INTEGRATION

Source


1 PACKAGE BODY PA_PO_INTEGRATION AS
2 /* $Header: PAPOINTB.pls 120.0 2005/05/30 14:35:21 appldev noship $ */
3 
4 -- ==========================================================================
5 -- = FUNCTION IS_PJR_PO_INTEG_ENABLED: This function checks if PJR License is
6 -- = on and if PA.FP.M or above is installed.
7 -- ==========================================================================
8 
9 FUNCTION IS_PJR_PO_INTEG_ENABLED RETURN VARCHAR2 IS
10 
11 BEGIN
12 
13   Return 'N';
14 
15 END IS_PJR_PO_INTEG_ENABLED;
16 
17 -- ==========================================================================
18 -- = FUNCTION is_pjc_po_cwk_intg_enab: This function will return 'N' in 11.5.10
19 -- = to indicate that PA.FP.M is not installed. PO will disable project related
20 -- = fields for contingent worker POs in 11.5.10. This function will be changed
21 -- = to return 'Y' in FP.M.
22 -- ==========================================================================
23 
24 FUNCTION is_pjc_po_cwk_intg_enab RETURN VARCHAR2 IS
25 
26 BEGIN
27 
28   Return 'Y';
29 
30 END is_pjc_po_cwk_intg_enab;
31 
32 -- ==========================================================================
33 -- = FUNCTION is_pjc_11i10_enabled: This function will return 'N' in the stub
34 -- = to indicate that PA changes for 11.5.10 is not available.
35 -- = PO will need to include this stub in their patchset.
36 -- = PJC will change this to return 'Y' in 11.5.10 PA changes.
37 -- ==========================================================================
38 
39 FUNCTION is_pjc_11i10_enabled RETURN VARCHAR2 IS
40 
41 BEGIN
42 
43   Return 'Y';
44 
45 END is_pjc_11i10_enabled;
46 
47 END PA_PO_INTEGRATION;