Search Results pa_xc_progress_status
Overview
The APPS.PA_PROJ_PROGRESS_REPORTS_V view is a reporting and integration layer over Oracle Projects progress reporting data in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes progress report records for projects and tasks, joining each report to its lookup definition so that a descriptive meaning accompanies the stored status code. The view is owned by the APPS schema and is intended for read-only consumption by reports, concurrent programs, OBIEE extracts, and external integrations that must display project progress information without reproducing the lookup join logic.
The search term "pa_xc_progress_status" refers to the lookup type that drives the status values in this view. By performing the lookup join internally, PA_PROJ_PROGRESS_REPORTS_V removes the requirement for downstream consumers to query PA_LOOKUPS separately, producing self-describing result sets suitable for public consumption.
Underlying Base Objects
The view is defined over two documented objects: PA_PROJ_PROGRESS_REPORTS and PA_LOOKUPS. In the ETRM documentation, PA_PROJ_PROGRESS_REPORTS is referenced as a synonym and PA_LOOKUPS as a view. The defining query selects from PA_PROJ_PROGRESS_REPORTS PPR joined to PA_LOOKUPS PAL where PPR.PROGRESS_STATUS_CODE equals PAL.LOOKUP_CODE and PAL.LOOKUP_TYPE equals 'PA_XC_PROGRESS_STATUS'.
Because the join is an inner equijoin on the lookup table, a progress report row appears in the view only when a corresponding active lookup row exists for the PA_XC_PROGRESS_STATUS lookup type. The view is therefore a filtered, denormalized projection that layers lookup semantics onto the base progress report records. Total row counts cannot exceed the number of qualifying rows in PA_PROJ_PROGRESS_REPORTS.
Key Columns
- PROGRESS_REPORT_ID – Primary identifier for the progress report record.
- RECORD_VERSION_NUMBER – Optimistic locking version, useful for detecting concurrent updates.
- PROJECT_ID / TASK_ID – Foreign keys identifying the project and, where applicable, the task the report covers.
- PROGRESS_STATUS_CODE – The stored lookup code from PA_LOOKUPS.
- PAL.MEANING – The translatable descriptive meaning for the status code, returned from the PA_LOOKUPS view.
- SHORT_DESCRIPTION / LONG_DESCRIPTION / ISSUES – Narrative content describing the report.
- PROGRESS_ASOF_DATE – The effective date against which progress is assessed.
- ESTIMATED_START_DATE / ESTIMATED_END_DATE / ACTUAL_START_DATE / ACTUAL_END_DATE – Schedule baselines and actuals.
- PERCENT_COMPLETE / ESTIMATE_TO_COMPLETE – Quantitative progress and remaining-effort measures.
- UNIT_TYPE / PLANNED_ACTIVITIES / REPORT_STATUS – Classification and lifecycle attributes of the report.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – Standard WHO audit columns.
Common Use Cases and Queries
Typical applications include project status dashboards, progress report listings for project managers, and extracts feeding enterprise reporting. The view is also useful when validating the active values of the PA_XC_PROGRESS_STATUS lookup as they appear in real report data.
- List all progress reports for a project with readable status:
SELECT progress_report_id, project_id, task_id, meaning, percent_complete FROM apps.pa_proj_progress_reports_v WHERE project_id = :p_project_id ORDER BY progress_asof_date DESC; - Summarize reports by status meaning:
SELECT meaning, COUNT(*) FROM apps.pa_proj_progress_reports_v GROUP BY meaning; - Identify in-flight reports:
SELECT progress_report_id, report_status, progress_asof_date FROM apps.pa_proj_progress_reports_v WHERE report_status = 'IN_PROGRESS';
Consumers should treat the view as read-only, avoid relying on column order, and remember that rows whose status codes lack a matching PA_XC_PROGRESS_STATUS lookup entry are excluded by the inner join.
-
VIEW: APPS.PA_PROJ_PROGRESS_REPORTS_V
12.2.2
-
View: PA_XC_MY_TASKS_V
12.1.1
product: PA - Projects , description: View My Task Details , implementation_dba_data: Not implemented in this database ,
-
View: PA_XC_MY_TASKS_V
12.2.2
product: PA - Projects , description: View My Task Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PA_PROJ_PROGRESS_REPORTS_V
12.1.1
-
VIEW: APPS.PA_PROJECT_LISTS_PORTLET_V
12.1.1
-
VIEW: APPS.PA_PROJECT_LISTS_PORTLET_V
12.2.2
-
View: PA_XC_PROJECTS_V
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_XC_PROJECTS_V
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
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_XC_PROJECT_DETAILS_V
12.2.2
product: PA - Projects , description: View All Project Details , implementation_dba_data: Not implemented in this database ,
-
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_XC_TASKS_V
12.1.1
product: PA - Projects , description: View All Task Status,Dates and Associations , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_LISTS_PORTLET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_PORTLET_V, object_name:PA_PROJECT_LISTS_PORTLET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_LISTS_PORTLET_V ,
-
View: PA_XC_TASKS_V
12.2.2
product: PA - Projects , description: View All Task Status,Dates and Associations , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_LISTS_PORTLET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_PORTLET_V, object_name:PA_PROJECT_LISTS_PORTLET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_LISTS_PORTLET_V ,
-
View: PA_XC_PROJECT_DETAILS_V
12.1.1
product: PA - Projects , description: View All Project Details , implementation_dba_data: Not implemented in this database ,
-
View: PA_XC_TASKS_ALL_V
12.2.2
product: PA - Projects , description: View All Task Details , implementation_dba_data: Not implemented in this database ,
-
View: PA_XC_TASKS_ALL_V
12.1.1
product: PA - Projects , description: View All Task Details , implementation_dba_data: Not implemented in this database ,
-
APPS.PA_PRJ_PROGRESS_REPORTS_PKG SQL Statements
12.1.1
-
APPS.PA_PRJ_PROGRESS_REPORTS_PKG SQL Statements
12.2.2
-
APPS.PA_PRJ_PROGRESS_REPORTS_PKG dependencies on PA_LOOKUPS
12.1.1
-
APPS.PA_PRJ_PROGRESS_REPORTS_PKG dependencies on DUAL
12.1.1
-
APPS.PA_PRJ_PROGRESS_REPORTS_PKG dependencies on PA_LOOKUPS
12.2.2
-
PACKAGE BODY: APPS.PA_PRJ_PROGRESS_REPORTS_PKG
12.2.2
-
APPS.PA_PRJ_PROGRESS_REPORTS_PKG dependencies on DUAL
12.2.2
-
PACKAGE BODY: APPS.PA_PRJ_PROGRESS_REPORTS_PKG
12.1.1