Search Results pa_progress_reports_v
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.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_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 ,
-
SYNONYM: APPS.PA_PROGRESS_REPORT_VERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROGRESS_REPORT_VERS, status:VALID,
-
SYNONYM: APPS.PA_PROGRESS_REPORT_VERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROGRESS_REPORT_VERS, status:VALID,
-
SYNONYM: APPS.PA_REPORT_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_REPORT_TYPES, status:VALID,
-
SYNONYM: APPS.PA_REPORT_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_REPORT_TYPES, status:VALID,
-
PACKAGE BODY: APPS.PA_REPORT_WORKFLOW_CLIENT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_REPORT_WORKFLOW_CLIENT, status:VALID,
-
PACKAGE BODY: APPS.PA_REPORT_WORKFLOW_CLIENT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_REPORT_WORKFLOW_CLIENT, status:VALID,
-
PACKAGE BODY: APPS.PA_PROGRESS_REPORT_WORKFLOW
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROGRESS_REPORT_WORKFLOW, status:VALID,
-
PACKAGE BODY: APPS.PA_PROGRESS_REPORT_WORKFLOW
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PA_PROGRESS_REPORT_WORKFLOW, status:VALID,
-
PACKAGE: APPS.PA_RESOURCE_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_RESOURCE_UTILS, status:VALID,
-
PACKAGE: APPS.PA_RESOURCE_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_RESOURCE_UTILS, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
APPS.PA_REPORT_WORKFLOW_CLIENT SQL Statements
12.1.1
-
APPS.PA_REPORT_WORKFLOW_CLIENT SQL Statements
12.2.2
-
SYNONYM: APPS.PA_PROJECT_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECT_STATUSES, status:VALID,
-
SYNONYM: APPS.PA_PROJECT_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECT_STATUSES, status:VALID,
-
APPS.PA_PROGRESS_REPORT_WORKFLOW SQL Statements
12.2.2
-
APPS.PA_PROGRESS_REPORT_WORKFLOW SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on PA_PROGRESS_REPORTS_V
12.1.1
-
APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on PA_PROGRESS_REPORTS_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.PA_REPORT_WORKFLOW_CLIENT dependencies on PA_PROGRESS_REPORTS_V
12.2.2
-
APPS.PA_REPORT_WORKFLOW_CLIENT dependencies on PA_PROGRESS_REPORTS_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on PA_PROJECT_PARTIES
12.1.1
-
APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on PA_PROJECT_PARTIES
12.2.2
-
APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on PA_LOOKUPS
12.2.2
-
APPS.PA_REPORT_WORKFLOW_CLIENT dependencies on PA_LOOKUPS
12.1.1
-
APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on PA_LOOKUPS
12.1.1
-
APPS.PA_REPORT_WORKFLOW_CLIENT dependencies on PA_LOOKUPS
12.2.2
-
APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on PER_ALL_PEOPLE_F
12.1.1
-
APPS.PA_PROGRESS_REPORT_WORKFLOW dependencies on PER_ALL_PEOPLE_F
12.2.2
-
PACKAGE BODY: APPS.PA_PROGRESS_REPORT_WORKFLOW
12.2.2
-
PACKAGE BODY: APPS.PA_PROGRESS_REPORT_WORKFLOW
12.1.1
-
PACKAGE BODY: APPS.PA_REPORT_WORKFLOW_CLIENT
12.2.2
-
PACKAGE BODY: APPS.PA_REPORT_WORKFLOW_CLIENT
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PA Tables and Views
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2