DBA Data[Home] [Help]

APPS.IGC_CC_PROJECTS_PKG SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 5

   Procedure   : Delete_Project
   Purpose     : This function is used by the Projects Accounting Team
                 to determine if a project can be purged or not.
                 if a project is associated with a contract commitment
                 then it cannot be purged.
   Parameters  : P_Project_Id  IN , The Project Id
   Returns     : Varchar2 ,Y  = project can be deleted
                           N  = project cannot be deleted
   ----------------------------------------------------------------------*/
   PROCEDURE Delete_Project (P_project_id     IN NUMBER,
                             P_delete_allowed OUT NOCOPY VARCHAR2)
   IS

   BEGIN

NULL;
Line: 22

   END Delete_Project;