Search Results progress_status_meaning
Overview
PA_PROGRESS_REPORTS_V is a read-only consolidated view owned by the APPS schema in Oracle E-Business Suite, belonging to the Projects (PA) product family. It exposes progress report version data maintained for project and task objects within Oracle Projects, presenting status, reporting period, narrative content, and publishing lifecycle information. The view is documented in ETRM for releases 12.1.1 and 12.2.2 with a VALID status.
The view is designed to present progress reports at the page level, restricted by the literal predicate PAGE_TYPE_CODE = 'PPR', meaning only progress report pages are returned. Its principal role is to support reporting, inquiry, and integration requirements where progress report content must be retrieved together with human-readable status and resource names, rather than raw code values. As a view, it stores no data of its own; all content is derived at query time from its underlying base objects.
Underlying Base Objects
The documented base objects referenced by this view are PA_PROGRESS_REPORT_VERS, PA_PROJECT_STATUSES (referenced twice), PA_REPORT_TYPES, and the PA_RESOURCE_UTILS package. PA_PROGRESS_REPORT_VERS is the primary driver table, supplying version identifiers, report dates, reported-by values, overview and comment text, publishing and cancellation dates, and record version numbers. PA_PROJECT_STATUSES is joined twice: once on REPORT_STATUS_CODE to resolve the report status meaning and once on PROGRESS_STATUS_CODE to resolve the progress status meaning, icon indicator, and active icon indicator. PA_REPORT_TYPES is outer-joined on REPORT_TYPE_ID to resolve the report type name. PA_RESOURCE_UTILS is invoked through the GET_RESOURCE_NAME function to derive the reporter name and the name of the last updating user, and internally through GET_RESOURCE_ID to convert the LAST_UPDATED_BY column into a resource identifier.
Key Columns
- OBJECT_TYPE, OBJECT_ID, PAGE_TYPE_CODE, PAGE_ID, VERSION_ID — identify the reported object, the report page, and the specific version of that page.
- REPORT_STATUS_CODE / REPORT_STATUS_MEANING — the internal status code and its translated meaning derived from PA_PROJECT_STATUSES.
- PROGRESS_STATUS_CODE / PROGRESS_STATUS_MEANING — the progress status code and meaning; because the join is outer, a report may carry no progress status.
- PROGRESS_STATUS_ICON / PROGRESS_STATUS_ACTIVE_ICON — icon and icon-active indicators used by the Projects user interface.
- REPORT_START_DATE, REPORT_END_DATE — the reporting period covered by the progress report.
- REPORTED_BY / REPORTED_BY_NAME — the resource identifier and resolved name of the person who submitted the report.
- OVERVIEW, COMMENTS — the narrative text of the progress report.
- PUBLISHED_DATE, CANCELED_DATE — lifecycle timestamps for published and canceled reports.
- RECORD_VERSION_NUMBER — optimistic locking version for the underlying record.
- REPORT_TYPE_ID / REPORT_TYPE_NAME — the report type and its name, outer-joined from PA_REPORT_TYPES.
- LAST_UPDATED_BY — the resource name of the last user to update the record.
Common Use Cases and Queries
Typical uses include reporting on progress report activity by project and period, building status dashboards, and extracting narrative content for integration with external repositories.
SELECT object_id,
report_type_name,
report_status_meaning,
report_start_date,
report_end_date,
reported_by_name
FROM pa_progress_reports_v
WHERE report_end_date >= :p_from_date
AND report_end_date <= :p_to_date;
SELECT object_type,
page_id,
version_id,
progress_status_meaning,
published_date
FROM pa_progress_reports_v
WHERE report_status_meaning = 'Submitted'
AND canceled_date IS NULL;
Because the view performs function calls to PA_RESOURCE_UTILS for name resolution, queries should be filtered as tightly as possible on object, date, or status columns to limit the volume of rows processed.
-
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_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_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_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_PROGRESS_REPORTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PROGRESS_REPORTS_V, object_name:PA_PROJ_PROGRESS_REPORTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PROGRESS_REPORTS_V ,
-
View: PA_PROJ_PROGRESS_REPORTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PROGRESS_REPORTS_V, object_name:PA_PROJ_PROGRESS_REPORTS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PROGRESS_REPORTS_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 ,
-
Lookup Type: PA_GANTT_TEXT_CODE
12.1.1
product: PA - Projects , meaning: Codes for Gantt Chart Text , description: Codes for Gantt Chart Texts ,
-
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_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_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 ,
-
Lookup Type: PA_GANTT_TEXT_CODE
12.2.2
product: PA - Projects , meaning: Codes for Gantt Chart Text , description: Codes for Gantt Chart Texts ,
-
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_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_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 ,