Search Results hz_cust_acct_sites_u1




Overview

HZ_CUST_ACCT_SITES_ALL is a core Trading Community Architecture (TCA) table owned by the AR schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores all customer account sites across all operating units. A customer account site is an address, associated with a customer account, at which the deploying company conducts business with its customers. A single customer account may have multiple customer account sites, and those sites may belong to multiple operating units, with the ORG_ID column providing the multi-org partitioning. The table is registered in FND Design Data as AR.HZ_CUST_ACCT_SITES_ALL and is physically stored in the APPS_TS_TX_DATA tablespace with a PCTFREE of 10.

From a dimensional modeling perspective, the mined Data Vault classification heuristic identifies this table as a hub. That classification is a modeling suggestion: the table carries a single-column surrogate primary key, HZ_CUST_ACCT_SITES_PK on CUST_ACCT_SITE_ID, and participates in a dense web of foreign-key relationships, which is characteristic of a hub entity in a Data Vault design.

Key Information Stored

The table defines 76 documented columns. The most significant are listed below.

Common Use Cases and Queries

Typical reporting and integration scenarios resolve a customer account to its sites, or resolve a site to the bill-to and ship-to roles used by downstream transactions. A representative query joining the account and party-site layers is:

  • SELECT cas.cust_acct_site_id, cas.cust_account_id, cas.party_site_id, cas.status, cas.bill_to_flag, cas.ship_to_flag FROM hz_cust_acct_sites_all cas WHERE cas.cust_account_id = :cust_account_id AND cas.status = 'A';

Because ORG_ID participates in the business key, multi-org aware queries should filter or join through the operating unit context. Common reporting use cases include identifying valid bill-to sites for invoicing, locating ship-to sites for order entry, auditing sites in a given territory, and validating ORIG_SYSTEM_REFERENCE uniqueness before loading interface data such as RA_INTERFACE_LINES_ALL. The non-unique indexes on CUST_ACCOUNT_ID with STATUS and the BILL_TO_FLAG or SHIP_TO_FLAG columns exist specifically to support these access paths efficiently.

Related Objects

This table is a hub referenced by a large number of EBS objects; the most significant are listed below.

Programmatic maintenance of this table should be performed through the supported TCA public APIs rather than direct DML, to preserve the integrity of the hub and its dependent link and satellite structures.