Search Results pa_progress_apprvl_type




Overview

APPS.PA_PROGRESS_REPORT_SETUP_V is a reporting and integration view in Oracle EBS Projects (PA) that consolidates the configuration of progress report page layouts, their associated report types, approval requirements, approver sourcing, and reporting cycle definitions. It is defined in the APPS schema and is available in both 12.1.1 and 12.2.2. The view joins object-level page layout definitions with report type master data, page definitions, lookup meanings, and billing cycles, producing a single denormalized row per object page layout configuration.

The user search term "pa_progress_apprvl_type" corresponds directly to the lookup type used inside the view. The view joins PA_LOOKUPS on LOOKUP_TYPE = 'PA_PROGRESS_APPRVL_TYPE' and matches LOOKUP_CODE to OPL.APPROVAL_REQUIRED, translating the approval-required code into a descriptive APPROVAL_DESCRIPTION. This makes the view the canonical source for interpreting progress report approval settings without requiring callers to decode the lookup separately.

Underlying Base Objects

The ETRM metadata documents the following referenced base objects:

Key Columns

Common Use Cases and Queries

Typical uses include reporting on configured progress report layouts, identifying which layouts require approval, and validating approver assignments and reporting cycles. A representative query listing approval configuration is:

SELECT object_page_layout_id, name report_type, page_name, approval_required, approval_description, approver_source_id, reporting_cycle_id FROM apps.pa_progress_report_setup_v WHERE approval_required IS NOT NULL ORDER BY name;

To isolate layouts tied to a specific report type and cycle:

SELECT v.object_page_layout_id, v.name, v.billing_cycle_name, v.next_reporting_date FROM apps.pa_progress_report_setup_v v WHERE v.report_type_id = :report_type_id AND v.reporting_cycle_id = :cycle_id;

Because the view exposes the decoded PA_PROGRESS_APPRVL_TYPE lookup and the resolved approver name, it eliminates the need to re-join PA_LOOKUPS and invoke PA_RESOURCE_UTILS in ad hoc reporting queries, making it an efficient integration point for downstream status reporting and workflow validation.