Search Results pa_project_statuses
Overview
The PA_PROJECT_STATUSES table is a foundational reference table within Oracle E-Business Suite's Projects (PA) module, specifically for releases 12.1.1 and 12.2.2. It serves as the central repository for all valid project status codes used throughout the application. This table is critical for enforcing data integrity and business rules, as it defines the allowable statuses that can be assigned to projects, tasks, control items, and other project-related entities. Its role is to provide a standardized, controlled list of status values that drive workflow, reporting, and system behavior across the Projects module.
Key Information Stored
The table's primary purpose is to store status codes and their associated metadata. While the provided ETRM excerpt does not list individual columns, the structure is implied by its usage. The primary key column is PROJECT_STATUS_CODE, which stores the unique identifier for each status (e.g., 'APPROVED', 'PENDING', 'CLOSED'). Based on standard Oracle EBS design patterns, the table likely contains descriptive columns such as NAME, DESCRIPTION, and ENABLED_FLAG to provide a meaningful label and control the active status of each code. The existence of the PA_PROJECT_STATUS_CONTROLS table, which references PA_PROJECT_STATUSES, suggests that statuses can be further configured with specific controls and permissions.
Common Use Cases and Queries
This table is primarily referenced in validation and reporting contexts. A common use case is to generate a list of active statuses for a user interface lookup (LOV) when setting or changing a project's status. Developers and report writers frequently join to this table to translate status codes into human-readable descriptions. Sample SQL patterns include:
- Retrieving all valid statuses:
SELECT project_status_code, name FROM pa_project_statuses WHERE enabled_flag = 'Y' ORDER BY name; - Joining to the main projects table for a report:
SELECT p.segment1 project_number, p.name project_name, ps.name project_status FROM pa_projects_all p, pa_project_statuses ps WHERE p.project_status_code = ps.project_status_code; - Identifying statuses used in workflow rules, such as determining allowable next statuses via the PA_NEXT_ALLOW_STATUSES table.
Related Objects
As evidenced by the extensive foreign key relationships in the metadata, PA_PROJECT_STATUSES is a core dependency for numerous transactional and control tables in the Projects module. Key related objects include:
- PA_PROJECTS_ALL: The primary projects table references PROJECT_STATUS_CODE.
- PA_CONTROL_ITEMS: References status codes for both STATUS_CODE and PROGRESS_STATUS_CODE.
- PA_PROJECT_STATUS_CONTROLS: Provides detailed control and security rules attached to each status code.
- PA_NEXT_ALLOW_STATUSES: Defines valid status transitions, referencing both STATUS_CODE and NEXT_ALLOWABLE_STATUS_CODE from this table.
- PA_PROJECT_ASSIGNMENTS, PA_PROJECT_REQUESTS, PA_PERCENT_COMPLETES: Various process-specific tables that track the status of their respective entities.
This wide integration underscores the table's central role in managing the project lifecycle state within Oracle EBS.
-
Table: PA_PROJECT_STATUSES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_STATUSES, object_name:PA_PROJECT_STATUSES, status:VALID, product: PA - Projects , description: Valid project status codes , implementation_dba_data: PA.PA_PROJECT_STATUSES ,
-
Table: PA_PROJECT_STATUSES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_STATUSES, object_name:PA_PROJECT_STATUSES, status:VALID, product: PA - Projects , description: Valid project status codes , implementation_dba_data: PA.PA_PROJECT_STATUSES ,
-
Table: PA_NEXT_ALLOW_STATUSES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_NEXT_ALLOW_STATUSES, object_name:PA_NEXT_ALLOW_STATUSES, status:VALID, product: PA - Projects , description: This table stores the next allowable statuses for statuses in PA_PROJECT_STATUSES. , implementation_dba_data: PA.PA_NEXT_ALLOW_STATUSES ,
-
Table: PA_NEXT_ALLOW_STATUSES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_NEXT_ALLOW_STATUSES, object_name:PA_NEXT_ALLOW_STATUSES, status:VALID, product: PA - Projects , description: This table stores the next allowable statuses for statuses in PA_PROJECT_STATUSES. , implementation_dba_data: PA.PA_NEXT_ALLOW_STATUSES ,
-
Table: PA_STATUS_LIST_ITEMS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_STATUS_LIST_ITEMS, object_name:PA_STATUS_LIST_ITEMS, status:VALID, product: PA - Projects , description: This table stores the statuses in a status list. , implementation_dba_data: PA.PA_STATUS_LIST_ITEMS ,
-
Table: PA_STATUS_LIST_ITEMS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_STATUS_LIST_ITEMS, object_name:PA_STATUS_LIST_ITEMS, status:VALID, product: PA - Projects , description: This table stores the statuses in a status list. , implementation_dba_data: PA.PA_STATUS_LIST_ITEMS ,
-
Table: PA_PURGE_PROJECTS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PURGE_PROJECTS, object_name:PA_PURGE_PROJECTS, status:VALID, product: PA - Projects , description: Information on projects to be purged in a purge batch , implementation_dba_data: PA.PA_PURGE_PROJECTS ,
-
Table: PA_PURGE_PROJECTS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PURGE_PROJECTS, object_name:PA_PURGE_PROJECTS, status:VALID, product: PA - Projects , description: Information on projects to be purged in a purge batch , implementation_dba_data: PA.PA_PURGE_PROJECTS ,
-
View: PA_LAUNCH_PAGE_OBJECTS_TM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LAUNCH_PAGE_OBJECTS_TM_V, object_name:PA_LAUNCH_PAGE_OBJECTS_TM_V, status:VALID, product: PA - Projects , description: PA_LAUNCH_PAGE_OBJECTS_TM_V gives the consolidated list of objects , implementation_dba_data: APPS.PA_LAUNCH_PAGE_OBJECTS_TM_V ,
-
View: PA_PURGE_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PURGE_PROJECTS_V, object_name:PA_PURGE_PROJECTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PURGE_PROJECTS_V ,
-
Table: PA_PURGE_BATCHES_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PURGE_BATCHES_ALL, object_name:PA_PURGE_BATCHES_ALL, status:VALID, product: PA - Projects , description: Purge batch information , implementation_dba_data: PA.PA_PURGE_BATCHES_ALL ,
-
View: PA_PURGE_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PURGE_PROJECTS_V, object_name:PA_PURGE_PROJECTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PURGE_PROJECTS_V ,
-
Table: PA_PURGE_BATCHES_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PURGE_BATCHES_ALL, object_name:PA_PURGE_BATCHES_ALL, status:VALID, product: PA - Projects , description: Purge batch information , implementation_dba_data: PA.PA_PURGE_BATCHES_ALL ,
-
View: PA_LAUNCH_PAGE_OBJECTS_TM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LAUNCH_PAGE_OBJECTS_TM_V, object_name:PA_LAUNCH_PAGE_OBJECTS_TM_V, status:VALID, product: PA - Projects , description: PA_LAUNCH_PAGE_OBJECTS_TM_V gives the consolidated list of objects , implementation_dba_data: APPS.PA_LAUNCH_PAGE_OBJECTS_TM_V ,
-
Table: PA_TASK_TYPES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TASK_TYPES, object_name:PA_TASK_TYPES, status:VALID, product: PA - Projects , description: PA_TASK_TYPES stores implementation-defined classifications of task. , implementation_dba_data: PA.PA_TASK_TYPES ,
-
Table: PA_TASK_TYPES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_TASK_TYPES, object_name:PA_TASK_TYPES, status:VALID, product: PA - Projects , description: PA_TASK_TYPES stores implementation-defined classifications of task. , implementation_dba_data: PA.PA_TASK_TYPES ,
-
View: PA_DELIV_ONLY_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIV_ONLY_PROG_HIST_V, object_name:PA_DELIV_ONLY_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIV_ONLY_PROG_HIST_V ,
-
View: PA_DELIV_ONLY_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIV_ONLY_PROG_HIST_V, object_name:PA_DELIV_ONLY_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIV_ONLY_PROG_HIST_V ,
-
Table: PA_PERCENT_COMPLETES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PERCENT_COMPLETES, object_name:PA_PERCENT_COMPLETES, status:VALID, product: PA - Projects , description: Estimated percent completion for all levels of the work breakdown structure. , implementation_dba_data: PA.PA_PERCENT_COMPLETES ,
-
Table: PA_PERCENT_COMPLETES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PERCENT_COMPLETES, object_name:PA_PERCENT_COMPLETES, status:VALID, product: PA - Projects , description: Estimated percent completion for all levels of the work breakdown structure. , implementation_dba_data: PA.PA_PERCENT_COMPLETES ,
-
View: PA_LAUNCH_PAGE_OBJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LAUNCH_PAGE_OBJECTS_V, object_name:PA_LAUNCH_PAGE_OBJECTS_V, status:VALID, product: PA - Projects , description: PA_LAUNCH_PAGE_OBJECTS_V gives the consolidated list of objects , implementation_dba_data: APPS.PA_LAUNCH_PAGE_OBJECTS_V ,
-
View: PA_LAUNCH_PAGE_OBJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LAUNCH_PAGE_OBJECTS_V, object_name:PA_LAUNCH_PAGE_OBJECTS_V, status:VALID, product: PA - Projects , description: PA_LAUNCH_PAGE_OBJECTS_V gives the consolidated list of objects , implementation_dba_data: APPS.PA_LAUNCH_PAGE_OBJECTS_V ,
-
View: PA_STRUCTURES_TASKS_V
12.1.1
product: PA - Projects , description: PA_STRUCTURES_TASKS_V selects all the attributes of a structure version and a task version. - For future use , implementation_dba_data: Not implemented in this database ,
-
View: PA_STRUCTURES_TASKS_V
12.2.2
product: PA - Projects , description: PA_STRUCTURES_TASKS_V selects all the attributes of a structure version and a task version. - For future use , implementation_dba_data: Not implemented in this database ,
-
View: PA_DELIVERABLE_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLE_PROGRESS_V, object_name:PA_DELIVERABLE_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIVERABLE_PROGRESS_V ,
-
View: PA_DELIVERABLE_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLE_PROGRESS_V, object_name:PA_DELIVERABLE_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIVERABLE_PROGRESS_V ,
-
View: PA_PROGRESS_REPORTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRESS_REPORTS_V, object_name:PA_PROGRESS_REPORTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROGRESS_REPORTS_V ,
-
View: PA_PROGRESS_REPORTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRESS_REPORTS_V, object_name:PA_PROGRESS_REPORTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROGRESS_REPORTS_V ,
-
Table: PA_CONTROL_ITEMS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CONTROL_ITEMS, object_name:PA_CONTROL_ITEMS, status:VALID, product: PA - Projects , description: PA_CONTROL_ITEMS stores user-defined control items in a project. Each item is of an item type as specified by the CI_TYPE_ID column. The items are categorized using the Classification, Reason and Priority attributes , implementation_dba_data: PA.PA_CONTROL_ITEMS ,
-
Table: PA_CONTROL_ITEMS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_CONTROL_ITEMS, object_name:PA_CONTROL_ITEMS, status:VALID, product: PA - Projects , description: PA_CONTROL_ITEMS stores user-defined control items in a project. Each item is of an item type as specified by the CI_TYPE_ID column. The items are categorized using the Classification, Reason and Priority attributes , implementation_dba_data: PA.PA_CONTROL_ITEMS ,
-
View: PA_PURGE_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PURGE_BATCHES_V, object_name:PA_PURGE_BATCHES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PURGE_BATCHES_V ,
-
View: PA_PURGE_BATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PURGE_BATCHES_V, object_name:PA_PURGE_BATCHES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PURGE_BATCHES_V ,
-
View: PA_LAUNCH_PAGE_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LAUNCH_PAGE_ACTIONS_V, object_name:PA_LAUNCH_PAGE_ACTIONS_V, status:VALID, product: PA - Projects , description: PA_LAUNCH_PAGE_ACTIONS_V gives the consolidated list of actions , implementation_dba_data: APPS.PA_LAUNCH_PAGE_ACTIONS_V ,
-
View: PA_LAUNCH_PAGE_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LAUNCH_PAGE_ACTIONS_V, object_name:PA_LAUNCH_PAGE_ACTIONS_V, status:VALID, product: PA - Projects , description: PA_LAUNCH_PAGE_ACTIONS_V gives the consolidated list of actions , implementation_dba_data: APPS.PA_LAUNCH_PAGE_ACTIONS_V ,
-
View: PA_BACK_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BACK_PROJ_TASK_PROG_V, object_name:PA_BACK_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_BACK_PROJ_TASK_PROG_V ,
-
View: PA_BACK_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BACK_PROJ_TASK_PROG_V, object_name:PA_BACK_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_BACK_PROJ_TASK_PROG_V ,
-
View: PA_DELIVERABLES_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLES_AMG_V, object_name:PA_DELIVERABLES_AMG_V, status:VALID, product: PA - Projects , description: PA_DELIVERABLES_AMG_V selects all the attributes of a Deliverable. , implementation_dba_data: APPS.PA_DELIVERABLES_AMG_V ,
-
View: PA_DELIVERABLES_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLES_AMG_V, object_name:PA_DELIVERABLES_AMG_V, status:VALID, product: PA - Projects , description: PA_DELIVERABLES_AMG_V selects all the attributes of a Deliverable. , implementation_dba_data: APPS.PA_DELIVERABLES_AMG_V ,
-
View: PA_DLV_ASSCN_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DLV_ASSCN_TASKS_V, object_name:PA_DLV_ASSCN_TASKS_V, status:VALID, product: PA - Projects , description: PA_DLV_ASSCN_TASKS_V selects all the attributes of a Deliverable , implementation_dba_data: APPS.PA_DLV_ASSCN_TASKS_V ,
-
View: PA_DLV_ASSCN_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DLV_ASSCN_TASKS_V, object_name:PA_DLV_ASSCN_TASKS_V, status:VALID, product: PA - Projects , description: PA_DLV_ASSCN_TASKS_V selects all the attributes of a Deliverable , implementation_dba_data: APPS.PA_DLV_ASSCN_TASKS_V ,
-
View: PA_FIN_LATEST_PUB_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_LATEST_PUB_TASKS_V, object_name:PA_FIN_LATEST_PUB_TASKS_V, status:VALID, product: PA - Projects , description: PA_FIN_LATEST_PUB_TASKS_V selects the tasks in the latest published structure version and the financial structure version. , implementation_dba_data: APPS.PA_FIN_LATEST_PUB_TASKS_V ,
-
View: PA_FIN_LATEST_PUB_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_LATEST_PUB_TASKS_V, object_name:PA_FIN_LATEST_PUB_TASKS_V, status:VALID, product: PA - Projects , description: PA_FIN_LATEST_PUB_TASKS_V selects the tasks in the latest published structure version and the financial structure version. , implementation_dba_data: APPS.PA_FIN_LATEST_PUB_TASKS_V ,
-
View: PA_PROJ_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_HIST_V ,
-
View: PA_PROJ_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_HIST_V ,
-
View: PA_PROJ_INFO_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_INFO_VIEW, object_name:PA_PROJ_INFO_VIEW, status:VALID, product: PA - Projects , description: Basic project information for projects , implementation_dba_data: APPS.PA_PROJ_INFO_VIEW ,
-
View: PA_PROGRESS_REPORTS_MAIN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRESS_REPORTS_MAIN_V, object_name:PA_PROGRESS_REPORTS_MAIN_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROGRESS_REPORTS_MAIN_V ,
-
View: PA_PROJ_INFO_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_INFO_VIEW, object_name:PA_PROJ_INFO_VIEW, status:VALID, product: PA - Projects , description: Basic project information for projects , implementation_dba_data: APPS.PA_PROJ_INFO_VIEW ,
-
View: PA_PROGRESS_REPORTS_MAIN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRESS_REPORTS_MAIN_V, object_name:PA_PROGRESS_REPORTS_MAIN_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROGRESS_REPORTS_MAIN_V ,
-
View: PA_STRUC_TASK_SEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUC_TASK_SEARCH_V, object_name:PA_STRUC_TASK_SEARCH_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STRUC_TASK_SEARCH_V ,
-
View: PA_STRUC_TASK_SEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUC_TASK_SEARCH_V, object_name:PA_STRUC_TASK_SEARCH_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STRUC_TASK_SEARCH_V ,