DBA Data[Home] [Help]

PACKAGE: APPS.PA_PJC_CWK_UTILS

Source


1 PACKAGE PA_PJC_CWK_UTILS AS
2 -- $Header: PACWKUTS.pls 120.0 2005/05/30 09:20:13 appldev noship $
3 
4 --Function is_rate_based_line
5 --This function is wrapper around the POs API PO_PA_INTEGRATION_GRP.is_rate_based_line
6 Function is_rate_based_line (P_Po_Line_Id         In Number,
7                              P_Po_Distribution_Id In Number) Return Varchar2;
8 
9 G_PoLineIdTab PA_PLSQL_DATATYPES.IdTabTyp;
10 G_IsRBLineTab PA_PLSQL_DATATYPES.Char1TabTyp;
11 
12 G_ExCwkRbTCOrgIdTab PA_PLSQL_DATATYPES.Char1TabTyp;
13 
14 --Function Exists_Prj_Cwk_RbTC(P_Org_Id IN NUMBER)
15 --Called from the Project Implementations form when the value for INTERFACE_CWK_TIMECARDS is changed from Y to N or vice versa
16 --Returns 'Y' if there exists project related rate based POs for any of the projects in the given P_Org_Id. Else return 'N'.
17 
18 Function Exists_Prj_Cwk_RbTC(P_Org_Id IN NUMBER) RETURN Varchar2;
19 
20 G_CwkTCXfaceAllowedTab PA_PLSQL_DATATYPES.Char1TabTyp;
21 
22 --Function Is_Cwk_TC_Xface_Allowed(P_Project_Id IN NUMBER)
23 --This function identifies for the given project OU if CWK tiemcard interface is allowed or not
24 --If enabled then costs must be interfaced as labor costs for CWK
25 --If disabled costs must be interfaced as supplier costs for CWK
26 Function Is_Cwk_TC_Xface_Allowed(P_Project_Id IN NUMBER) RETURN Varchar2;
27 
28 END PA_PJC_CWK_UTILS;