DBA Data[Home] [Help]

PACKAGE BODY: APPS.IGC_CC_PROJECTS_PKG

Source


1 PACKAGE BODY IGC_CC_PROJECTS_PKG AS
2 /*$Header: IGCCCPAB.pls 120.5 2006/01/20 06:29:27 vkilambi noship $*/
3 
4    /*----------------------------------------------------------------------
5    Procedure   : Delete_Project
6    Purpose     : This function is used by the Projects Accounting Team
7                  to determine if a project can be purged or not.
8                  if a project is associated with a contract commitment
9                  then it cannot be purged.
10    Parameters  : P_Project_Id  IN , The Project Id
11    Returns     : Varchar2 ,Y  = project can be deleted
12                            N  = project cannot be deleted
13    ----------------------------------------------------------------------*/
14    PROCEDURE Delete_Project (P_project_id     IN NUMBER,
15                              P_delete_allowed OUT NOCOPY VARCHAR2)
16    IS
17 
18    BEGIN
19 
20 NULL;
21 
22    END Delete_Project;
23 
24 END IGC_CC_PROJECTS_PKG;