Search Results status_icon_ind
Overview
PA_PROJECT_STATUSES_V is a reporting view owned by the APPS schema within the Oracle E-Business Suite Projects (PA) module. Its documented purpose is to present the set of "control item statuses" available to Oracle Projects. In Oracle Projects, a project progresses through a series of statuses (for example, Submitted, Approved, Rejected, On Hold, Closed). These statuses are classified internally by a discriminator column, STATUS_TYPE, which distinguishes control item statuses from other status categories. PA_PROJECT_STATUSES_V is defined as a restricted projection over the base table PA_PROJECT_STATUSES filtered by the predicate STATUS_TYPE = 'CONTROL_ITEM'.
Because the view eliminates all non-control-item rows at the definition level, it acts as a stable, read-only interface for reports, concurrent programs, custom forms, and integration interfaces that require only control item statuses. It is classified as VALID in the data dictionary, indicating that the underlying definition is compiled and available in both Oracle EBS 12.1.1 and 12.2.2 environments. Users searching on "status_type" encounter this view precisely because the STATUS_TYPE column is the defining filter of the view and is also exposed as a selectable column in its projection.
Underlying Base Objects
The documented base object for this view is PA_PROJECT_STATUSES, referenced through the APPS-owned synonym. The relationship is one of projection and restriction: the view selects a fixed list of columns from the base table and applies a single WHERE predicate on STATUS_TYPE. No joins, aggregations, or set operators are documented, so the view carries no additional performance cost relative to a direct query against the base table with the equivalent filter.
Adding the STATUS_TYPE predicate offers two important consequences. First, it enforces semantic scoping — consumers can never inadvertently retrieve non-control-item statuses. Second, it reduces the number of rows returned, which benefits report queries and List of Values definitions that target control item workflows. Because the view is a simple projection, DML against it is not intended; the base table should be treated as the maintenance point for status definitions.
Key Columns
- PROJECT_STATUS_CODE / PROJECT_STATUS_NAME — The internal code and the user-facing name of the status, the primary identifiers used in lookups and displays.
- PROJECT_SYSTEM_STATUS_CODE — The system-level status to which the control item status maps, enabling reporting alignment with system status transitions.
- STATUS_TYPE — The discriminator column; within this view its value is always 'CONTROL_ITEM'. It remains exposed for completeness and for consumers that build generic status queries.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective dating for the status, allowing time-bounded availability of a status definition.
- PREDEFINED_FLAG / STARTING_STATUS_FLAG — Oracle-provided versus user-defined status indicators, and identification of the initial status in a lifecycle.
- ENABLE_WF_FLAG, WORKFLOW_ITEM_TYPE, WORKFLOW_PROCESS, WF_SUCCESS_STATUS_CODE, WF_FAILURE_STATUS_CODE — Workflow integration attributes governing the Oracle Workflow item type, process, and the success/failure target statuses.
- NEXT_ALLOWABLE_STATUS_FLAG, PROJECT_STATUS_WEIGHT — Flags controlling allowable successor statuses and the ordinal weight used for ordering or precedence.
- STATUS_ICON_IND / STATUS_ICON_ACTIVE_IND — Indicators for status icon display in the Projects user interface.
- Descriptive and audit columns — DESCRIPTION, ATTRIBUTE_CATEGORY, ATTRIBUTE1 through ATTRIBUTE15, and the standard WHO audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN).
Common Use Cases and Queries
The view is most commonly used to populate status List of Values, to constrain status-driven workflow logic in reports, and to drive conditional formatting based on PROJECT_STATUS_WEIGHT or STATUS_ICON_IND. Typical consumers include custom Oracle Reports, BI Publisher data templates, and OAF or Forms-based extensions in the Projects module.
Retrieve all active control item statuses ordered by weight:
SELECT project_status_code, project_status_name, project_system_status_code, project_status_weight
FROM apps.pa_project_statuses_v
WHERE (start_date_active IS NULL OR start_date_active <= SYSDATE)
AND (end_date_active IS NULL OR end_date_active >= SYSDATE)
ORDER BY project_status_weight;
Identify predefined versus user-defined statuses:
SELECT project_status_code, project_status_name, predefined_flag
FROM apps.pa_project_statuses_v
WHERE predefined_flag = 'Y';
Check workflow-enabled statuses and their success transitions:
SELECT project_status_code, workflow_item_type, workflow_process,
wf_success_status_code, wf_failure_status_code
FROM apps.pa_project_statuses_v
WHERE enable_wf_flag = 'Y';
Because the view restricts rows by STATUS_TYPE = 'CONTROL_ITEM', queries against it are naturally scoped and require no additional status-type predicate, although including one explicitly supports self-documenting SQL.
-
View: PA_PROJECT_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_STATUSES_V, object_name:PA_PROJECT_STATUSES_V, status:VALID, product: PA - Projects , description: This view provides the control items statuses. , implementation_dba_data: APPS.PA_PROJECT_STATUSES_V ,
-
View: PA_PROJECT_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_STATUSES_V, object_name:PA_PROJECT_STATUSES_V, status:VALID, product: PA - Projects , description: This view provides the control items statuses. , implementation_dba_data: APPS.PA_PROJECT_STATUSES_V ,
-
View: PA_PROJ_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_STATUSES_V, object_name:PA_PROJ_STATUSES_V, status:VALID, product: PA - Projects , description: This view provides the project statuses. , implementation_dba_data: APPS.PA_PROJ_STATUSES_V ,
-
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_EGO_LC_PHASES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EGO_LC_PHASES_V, object_name:PA_EGO_LC_PHASES_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_EGO_LC_PHASES_V ,
-
View: PA_PROJ_CURR_STATUS_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_CURR_STATUS_REP_V, object_name:PA_PROJ_CURR_STATUS_REP_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_CURR_STATUS_REP_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 ,
-
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_CURR_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CURR_PROJ_TASK_PROG_V, object_name:PA_CURR_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CURR_PROJ_TASK_PROG_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_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_EGO_LC_PHASES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_EGO_LC_PHASES_V, object_name:PA_EGO_LC_PHASES_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_EGO_LC_PHASES_V ,
-
View: PA_PROJ_CURR_STATUS_REP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_CURR_STATUS_REP_V, object_name:PA_PROJ_CURR_STATUS_REP_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_CURR_STATUS_REP_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 ,
-
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_CURR_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CURR_PROJ_TASK_PROG_V, object_name:PA_CURR_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CURR_PROJ_TASK_PROG_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_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROG_HIST_V, object_name:PA_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROG_HIST_V ,
-
View: PA_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROG_HIST_V, object_name:PA_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROG_HIST_V ,
-
View: PA_TASKS_PUBLISHING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_PUBLISHING_V, object_name:PA_TASKS_PUBLISHING_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASKS_PUBLISHING_V ,
-
View: PA_TASKS_PUBLISHING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_PUBLISHING_V, object_name:PA_TASKS_PUBLISHING_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASKS_PUBLISHING_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_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_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_DELIVERABLE_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLE_PROG_HIST_V, object_name:PA_DELIVERABLE_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIVERABLE_PROG_HIST_V ,
-
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_DELIVERABLE_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLE_PROG_HIST_V, object_name:PA_DELIVERABLE_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIVERABLE_PROG_HIST_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_CI_BASIC_CTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_BASIC_CTL_V ,
-
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_CI_BASIC_CTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CI_BASIC_CTL_V, object_name:PA_CI_BASIC_CTL_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CI_BASIC_CTL_V ,
-
View: PA_TASK_DELVRS_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_DELVRS_PROGRESS_V, object_name:PA_TASK_DELVRS_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_DELVRS_PROGRESS_V ,
-
View: PA_TASK_DELVRS_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_DELVRS_PROGRESS_V, object_name:PA_TASK_DELVRS_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_DELVRS_PROGRESS_V ,
-
View: PA_STRUCTURE_VERSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUCTURE_VERSIONS_V, object_name:PA_STRUCTURE_VERSIONS_V, status:VALID, product: PA - Projects , description: PA_STRUCTURE_VERSIONS_V selects all structure-related attributes. - For future use , implementation_dba_data: APPS.PA_STRUCTURE_VERSIONS_V ,
-
View: PA_STRUCTURE_VERSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUCTURE_VERSIONS_V, object_name:PA_STRUCTURE_VERSIONS_V, status:VALID, product: PA - Projects , description: PA_STRUCTURE_VERSIONS_V selects all structure-related attributes. - For future use , implementation_dba_data: APPS.PA_STRUCTURE_VERSIONS_V ,
-
View: PA_TASK_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROGRESS_V, object_name:PA_TASK_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROGRESS_V ,
-
View: PA_TASK_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROGRESS_V, object_name:PA_TASK_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROGRESS_V ,
-
View: PA_STRUCT_TASK_EDIT_V
12.1.1
product: PA - Projects , description: PA_STRUCT_TASK_EDIT_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_STRUCT_TASK_EDIT_V
12.2.2
product: PA - Projects , description: PA_STRUCT_TASK_EDIT_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_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 ,
-
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_LATEST_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LATEST_PROJ_TASK_PROG_V, object_name:PA_LATEST_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_LATEST_PROJ_TASK_PROG_V ,
-
View: PA_PROJ_TASK_PROG_DET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_DET_V, object_name:PA_PROJ_TASK_PROG_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_DET_V ,
-
View: PA_PROJ_TASK_PROG_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_DET_V, object_name:PA_PROJ_TASK_PROG_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_DET_V ,
-
View: PA_LATEST_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LATEST_PROJ_TASK_PROG_V, object_name:PA_LATEST_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_LATEST_PROJ_TASK_PROG_V ,
-
View: PA_LATEST_PUB_STRUC_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LATEST_PUB_STRUC_TASKS_V, object_name:PA_LATEST_PUB_STRUC_TASKS_V, status:VALID, product: PA - Projects , description: PA_LATEST_PUB_STRUC_TASKS_V selects the information of the latest published structure version. - For future use , implementation_dba_data: APPS.PA_LATEST_PUB_STRUC_TASKS_V ,
-
View: PA_LATEST_PUB_STRUC_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LATEST_PUB_STRUC_TASKS_V, object_name:PA_LATEST_PUB_STRUC_TASKS_V, status:VALID, product: PA - Projects , description: PA_LATEST_PUB_STRUC_TASKS_V selects the information of the latest published structure version. - For future use , implementation_dba_data: APPS.PA_LATEST_PUB_STRUC_TASKS_V ,
-
View: PA_PROGRESS_HIST_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRESS_HIST_DET_V, object_name:PA_PROGRESS_HIST_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROGRESS_HIST_DET_V ,
-
View: PA_PROGRESS_HIST_DET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRESS_HIST_DET_V, object_name:PA_PROGRESS_HIST_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROGRESS_HIST_DET_V ,