Search Results reference_use_flag




Overview

UMX_ORGANIZATION_PVT_V is a private database view owned by the APPS schema within the FND — Application Object Library product family. The "PVT" designation indicates that the view is intended for internal consumption by the Oracle User Management (UMX) framework rather than for direct customer use. It exposes a curated subset of organization-level attributes drawn from the Trading Community Architecture (TCA) party model, presenting them in a flattened, report-friendly structure.

The view is defined with a single filter: only rows where PARTY_TYPE equals 'ORGANIZATION' are returned, effectively excluding person parties maintained in the same underlying table. Because it is a view and not a table, it stores no data of its own and inherits the security, indexing, and partitioning characteristics of its base object. Within Oracle EBS 12.1.1 and 12.2.2, the view participates in UMX role and permission resolution logic, and it is frequently encountered when administrators inspect organization-related registrations, party assignments, or language-specific organization attributes.

Underlying Base Objects

The view is defined over HZ_PARTIES, referenced through the APPS.HZ_PARTIES synonym. All columns projected by UMX_ORGANIZATION_PVT_V originate from this single base table; the view adds no joins, aggregations, or calculated expressions. The relationship is therefore one-to-one at the row level for organization parties: every row in the view corresponds to exactly one organization record in HZ_PARTIES, and every organization party in HZ_PARTIES is eligible to appear in the view.

Two important consequences follow. First, any update to an organization party through the TCA APIs is immediately visible through the view. Second, because the definition filters on PARTY_TYPE, person parties such as employees and contacts are excluded. Administrators should treat the view as a read-only presentation layer and perform DML against HZ_PARTIES or the supported TCA public APIs instead.

Key Columns

Common Use Cases and Queries

Typical scenarios include identifying organizations by language for localization audits, reconciling party numbers against external systems, and producing address and firmographic extracts for downstream reporting. The following query returns active organizations and their language attributes:

  • SELECT party_id, party_name, party_number, language_name, country, status FROM apps.umx_organization_pvt_v WHERE status = 'A' ORDER BY party_name;
  • SELECT category_code, COUNT(*) FROM apps.umx_organization_pvt_v GROUP BY category_code;
  • SELECT p.party_name, p.duns_number, p.employees_total FROM apps.umx_organization_pvt_v p WHERE p.year_established >= 2000;

Because the object is a private UMX view, Oracle does not guarantee its definition across patch levels. Custom code should prefer public TCA views such as HZ_ORGANIZATIONS_V2 where equivalent attributes are available, reserving UMX_ORGANIZATION_PVT_V for diagnostic or investigative queries.