Search Results deliverable_system_status_code




Overview

PA_DELIVERABLES_V is a Projects (PA) module view owned by the APPS schema. Its documented purpose is to select all attributes of a Deliverable, which in Oracle Projects terminology is a project element that represents a tangible or intangible output produced during the execution of a project. The view consolidates information from the core project element tables, project definition tables, progress rollup tables, and the HR person table into a single denormalized result set, exposing deliverable identity, status, progress, scheduling, and descriptive flexfield data.

Because Oracle EBS report and integration developers rarely need to reconstruct the multi-table join logic required to resolve a current, published deliverable record, PA_DELIVERABLES_V serves as the standard read-only interface for that purpose. It is commonly referenced in custom reports, Oracle Business Intelligence Publisher data templates, and inbound/outbound interfaces that must resolve deliverable metadata without touching base tables directly.

Underlying Base Objects

The view is defined over the following documented base objects, most of which are accessed through APPS synonyms:

All joins other than the driving element/version join and the project ID equality are outer joins, so a deliverable is returned even where status, manager, progress, or percent-complete data is absent.

Key Columns

Common Use Cases and Queries

A frequent requirement is locating deliverables by the source reference stored in PM_SOURCE_REFERENCE, for example when reconciling an external project-management tool against Oracle Projects:

SELECT element_number, element_name, pm_source_reference, project_number, project_name, status_code FROM apps.pa_deliverables_v WHERE pm_source_reference = :source_ref;

Deliverables nearing their due date or overdue can be listed with project context:

SELECT project_number, project_name, element_number, element_name, full_name, due_date FROM apps.pa_deliverables_v WHERE completion_date IS NULL AND due_date BETWEEN SYSDATE AND SYSDATE + 30 ORDER BY due_date;

Progress monitoring queries typically filter on the published workplan values:

SELECT element_number, progress_status_name, completed_percentage, progress_comment, date_computed FROM apps.pa_deliverables_v WHERE status_code = 'ACTIVE' AND completed_percentage < 100;

Because the view already restricts progress and percent-complete joins to CURRENT_FLAG = 'Y' and PUBLISHED_FLAG = 'Y', callers receive only the currently published progress snapshot without additional filtering, provided they are aware that a deliverable with no published workplan will show the outer-joined columns as null.

  • View: PA_DELIVERABLES_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_DELIVERABLES_V,  object_name:PA_DELIVERABLES_V,  status:VALID,  product: PA - Projectsdescription: PA_DELIVERABLES_V selects all the attributes of a Deliverable. ,  implementation_dba_data: APPS.PA_DELIVERABLES_V

  • View: PA_DELIVERABLES_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_DELIVERABLES_V,  object_name:PA_DELIVERABLES_V,  status:VALID,  product: PA - Projectsdescription: PA_DELIVERABLES_V selects all the attributes of a Deliverable. ,  implementation_dba_data: APPS.PA_DELIVERABLES_V