Search Results xla_third_party_sites_v
Overview
XLA_THIRD_PARTY_SITES_V is a Subledger Accounting (XLA) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to expose third party site information in a consolidated, subledger-facing form. In Subledger Accounting, a "third party" is the external party associated with a subledger transaction — a supplier in the Payables context or a customer in the Receivables context. This view normalizes the site and location data attached to those parties into a single, uniformly named projection so that accounting and reporting components can retrieve a third party site without embedding product-specific joins to the underlying Payables and Receivables/HZ tables.
The view is a UNION ALL of two branches, one for supplier sites and one for customer sites. This design allows XLA reporting, journal line enrichment, and integration extracts to resolve site-level context through a single query regardless of whether the underlying third party is a supplier or a customer. The THIRD_PARTY_TYPE column acts as the discriminator between the two sources.
Underlying Base Objects
The view is defined over five base objects (referenced as synonyms in the APPS schema):
- AP_SUPPLIERS — supplier header records, supplying
VENDOR_ID. - AP_SUPPLIER_SITES_ALL — supplier sites across operating units, supplying
VENDOR_SITE_ID,VENDOR_SITE_CODE, andADDRESS_LINE1. - HZ_CUST_ACCOUNTS — customer account records, supplying
CUST_ACCOUNT_ID. - HZ_CUST_ACCT_SITES_ALL — customer account sites, joining account to site.
- HZ_CUST_SITE_USES_ALL — customer site uses, supplying
SITE_USE_ID,SITE_USE_CODE, andLOCATION.
The supplier branch joins AP_SUPPLIERS to AP_SUPPLIER_SITES_ALL on VENDOR_ID. The customer branch joins HZ_CUST_ACCOUNTS to HZ_CUST_ACCT_SITES_ALL on CUST_ACCOUNT_ID, and then to HZ_CUST_SITE_USES_ALL on CUST_ACCT_SITE_ID. Because the view draws on all organization units in the sites tables, results are not implicitly restricted by operating unit; callers must apply that filter themselves where applicable.
Key Columns
- THIRD_PARTY_SITE_ID — the site identifier. For suppliers this maps to
VENDOR_SITE_ID; for customers it maps toSITE_USE_ID. - THIRD_PARTY_ID — the third party identifier. For suppliers this is
VENDOR_ID; for customers it isCUST_ACCOUNT_ID. The user search term "third_party_id" resolves directly to this column and is the primary key used to correlate the view with XLA transaction and accounting data. - THIRD_PARTY_TYPE — a single-character discriminator:
Sfor supplier (Payables) andCfor customer (Receivables). Any join or aggregate must account for this value to avoid ambiguity between vendor and customer identifiers. - THIRD_PARTY_SITE_CODE — the site code. Suppliers provide
VENDOR_SITE_CODE; customers provideSITE_USE_CODE, reflecting the differing semantics of site usage between the two products. - LOCATION — the address text. Suppliers return
ADDRESS_LINE1; customers return theLOCATIONvalue from the site use record.
Common Use Cases and Queries
This view is typically used in Subledger Accounting diagnostics, custom reports, and integration extracts where a third party site must be resolved alongside accounting entries. A representative query retrieves site details for a given third party:
SELECT third_party_id, third_party_type, third_party_site_id, third_party_site_code, location FROM xla_third_party_sites_v WHERE third_party_id = :p_id AND third_party_type = 'S';SELECT third_party_type, COUNT(*) FROM xla_third_party_sites_v GROUP BY third_party_type;- Joining the view to XLA journal line tables on
THIRD_PARTY_IDandTHIRD_PARTY_TYPEto enrich accounting output with site-level location data.
Because the view performs a UNION ALL without deduplication, records for the same party may appear multiple times when multiple sites exist. Consumers should always constrain by THIRD_PARTY_TYPE and, where relevant, by the site identifier to obtain a deterministic result.
-
View: XLA_THIRD_PARTY_SITES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_THIRD_PARTY_SITES_V, object_name:XLA_THIRD_PARTY_SITES_V, status:VALID, product: XLA - Subledger Accounting , description: third party site information , implementation_dba_data: APPS.XLA_THIRD_PARTY_SITES_V ,
-
View: XLA_THIRD_PARTY_SITES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_THIRD_PARTY_SITES_V, object_name:XLA_THIRD_PARTY_SITES_V, status:VALID, product: XLA - Subledger Accounting , description: third party site information , implementation_dba_data: APPS.XLA_THIRD_PARTY_SITES_V ,
-
VIEW: APPS.XLA_THIRD_PARTY_SITES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_THIRD_PARTY_SITES_V, object_name:XLA_THIRD_PARTY_SITES_V, status:VALID,
-
VIEW: APPS.XLA_THIRD_PARTY_SITES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XLA.XLA_THIRD_PARTY_SITES_V, object_name:XLA_THIRD_PARTY_SITES_V, status:VALID,
-
PACKAGE BODY: APPS.XLA_THIRD_PARTY_MERGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_THIRD_PARTY_MERGE, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.XLA_THIRD_PARTY_MERGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XLA_THIRD_PARTY_MERGE, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.AP_SUPPLIER_SITES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_SUPPLIER_SITES_ALL, status:VALID,
-
SYNONYM: APPS.AP_SUPPLIERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_SUPPLIERS, status:VALID,
-
SYNONYM: APPS.AP_SUPPLIER_SITES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_SUPPLIER_SITES_ALL, status:VALID,
-
SYNONYM: APPS.AP_SUPPLIERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_SUPPLIERS, status:VALID,
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_THIRD_PARTY_SITES_V
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_THIRD_PARTY_SITES_V
12.1.1
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
APPS.XLA_THIRD_PARTY_MERGE SQL Statements
12.2.2
-
SYNONYM: APPS.HZ_CUST_SITE_USES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
APPS.XLA_THIRD_PARTY_MERGE SQL Statements
12.1.1
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_THIRD_PARTIES_V
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_LAUNCH_OPTIONS
12.1.1
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_TRANSACTION_ENTITIES
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_LEDGER_OPTIONS
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_THIRD_PARTIES_V
12.1.1
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_EVENTS
12.2.2
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_TRANSACTION_ENTITIES
12.1.1
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_LEDGER_OPTIONS
12.1.1
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
APPS.XLA_THIRD_PARTY_MERGE dependencies on XLA_EVENTS
12.1.1
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
PACKAGE BODY: APPS.XLA_THIRD_PARTY_MERGE
12.2.2
-
PACKAGE BODY: APPS.XLA_THIRD_PARTY_MERGE
12.1.1
-
eTRM - XLA Tables and Views
12.2.2
-
eTRM - XLA Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - XLA Tables and Views
12.2.2
-
eTRM - XLA Tables and Views
12.1.1