Search Results allocation_method




Overview

PSA_IMPLEMENTATION_V is a documented Oracle E-Business Suite view owned by the APPS schema and classified under the PSA – Public Sector Financials product family. Its stated purpose, per the ETRM metadata, is to show which Public Sector Financials features are enabled for which organizations. In practice, the view acts as a lightweight, read-oriented window into the PSA implementation configuration, allowing administrators, implementers, and reporting components to determine feature enablement on a per-organization basis without querying the underlying transactional configuration rows directly.

Because Oracle EBS institutions frequently operate with multiple operating units and organizations, feature enablement is a scoping concern rather than a global switch. PSA_IMPLEMENTATION_V addresses this by exposing a row for each combination of PSA feature and organization, together with operational attributes such as allocation method and mapping requirements. Status is reported as VALID in the ETRM registry, indicating the view compiles and resolves against its base object within the 12.1.1 and 12.2.2 releases covered here.

Underlying Base Objects

The view is defined over a single documented base object: PSA_IMPLEMENTATION_ALL, which is exposed through a SYNONYM. The view text is a projection of that table with essentially no transformation logic beyond column selection and the addition of ROWID:

This design is deliberate. By exposing a straightforward projection, the view preserves the column semantics of the base table while providing a stable, named access point for reporting and integration. The absence of WHERE clauses, joins, or aggregation means there is no filtering or derivation applied; consumers see exactly the configuration rows maintained in the base object, subject only to their own query predicates and to organization-based security enforced elsewhere in the EBS stack.

Key Columns

  • ROW_ID / ROWID — Surrogate row identifier inherited from the base table, useful for uniqueness in ad hoc extracts.
  • PSA_FEATURE — Identifies the specific Public Sector Financials feature whose enablement is recorded.
  • STATUS — Indicates whether the associated feature is active for the given organization.
  • ORG_ID — The organization for which the feature setting applies; the primary scoping key.
  • ALLOCATION_METHOD — The allocation method configured for the feature and organization combination. This is the column matched by the user search term "allocation_method" and is central to allocation-related configuration review.
  • MAPPING_REQUIRED — Indicates whether account mapping is required for the feature in question.
  • PROGRAM_INSTALLED — Records whether the supporting concurrent program or module component has been installed.
  • Audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) — Standard EBS Who columns supporting change tracking and audit reporting.

Common Use Cases and Queries

Typical usage centers on configuration verification, allocation troubleshooting, and multi-organization implementation audits. The following query lists allocation methods by organization and feature:

  • SELECT org_id, psa_feature, status, allocation_method FROM apps.psa_implementation_v WHERE allocation_method IS NOT NULL ORDER BY org_id, psa_feature;

To confirm which features are enabled for a specific organization:

  • SELECT psa_feature, status, mapping_required, program_installed FROM apps.psa_implementation_v WHERE org_id = :p_org_id AND status = 'Y';

For implementation audits, administrators may review recently changed configuration rows using the audit columns:

  • SELECT psa_feature, org_id, last_updated_by, last_update_date FROM apps.psa_implementation_v ORDER BY last_update_date DESC;

Because the view performs no filtering of its own, queries should always constrain by ORG_ID or PSA_FEATURE to remain selective. Its uncomplicated definition also makes it suitable as a source for custom concurrent programs, BI Publisher reports, and integration extracts that need to align downstream behavior with the feature configuration actually enabled at the organization level.