Search Results inv_ind_sch_fixed_date




Overview

The view PA_PROJECTS_O is a single-organization (single-org) reporting and integration object within the Oracle EBS Projects (PA) module. Its name follows the Oracle Applications convention in which the "_O" suffix denotes a view that has been filtered to expose project records for a single operating unit, presenting a flattened, denormalized projection of the core project definition entity. In Oracle EBS 12.1.1 and 12.2.2, single-org views such as this one are foundational to multi-org security, because they restrict the visible project rows to the organization context of the current session through the ORG_ID column and the Multi-Org views (MO) layered on top of them.

The view is not implemented as a database object in the source environment documented by ETRM, but its view text is fully published, indicating its definition is generated and installed at runtime during product installation. It serves primarily as a data source for project inquiry, reporting, and interfaces that need a concise, single-record-per-project representation of controlling attributes such as project status, billing configuration, rate schedules, and schedule fixed dates.

Underlying Base Objects

The ETRM metadata documents no referenced base objects for PA_PROJECTS_O, and the object is reported as "Not implemented in this database." The published view text, however, clearly selects from the project definition tables in the PA schema, principally PA_PROJECTS_ALL, joined to the project type and organization context. The "_O" designation is significant: it indicates that this view is the operating-unit-restricted layer that underlies the corresponding "_MO" (multi-org) view, PA_PROJECTS_MO, which exposes the ORG_ID-qualified rows to Multi-Org-enabled responsibilities.

Because no base tables are formally documented, consumers should treat the view as a stable projection over the PA project master data rather than a physically stored object. Column ordering, availability, and the exact set of exposed attributes may vary between the 12.1.1 and 12.2.2 file systems, so column-level dependencies should be validated against the deployed view text in each instance.

Key Columns

The view exposes a broad set of project attributes. Among the most significant are:

Common Use Cases and Queries

Typical uses include indirect rate schedule validation, project setup auditing, and reconciliation of cost, revenue, and invoice rate-schedule effective dates. A representative query isolating the cost indirect schedule fixed date is:

SELECT project_id, name, segment1, cost_ind_rate_sch_id, cost_ind_sch_fixed_date
FROM   pa_projects_o
WHERE  cost_ind_sch_fixed_date IS NOT NULL
ORDER BY project_id;

Analysts also join the view to PA_PROJECT_TYPES and to rate-schedule tables to compare the fixed dates across cost, revenue, and invoice schedules, and to identify projects whose schedule dates predate or postdate expected effective ranges. Because the view is single-org, queries executed from a Multi-Org session should reference PA_PROJECTS_MO or supply the appropriate ORG_ID predicate to preserve operating-unit security.