Search Results hz_party_sites
Overview
HZ_PARTY_SITES is the central TCA (Trading Community Architecture) table that links a party record in HZ_PARTIES to a physical address record in HZ_LOCATIONS. It resides in the AR schema and is classified as VALID in Oracle EBS 12.1.1 and 12.2.2. The table acts as the association layer between a person or organization and the place at which that party conducts business, receives goods, or is invoiced. A single party may be associated with many party sites, and a single location may be referenced by multiple party sites, making this one of the most heavily joined tables in the E-Business Suite.
From a Data Vault modeling perspective, the metadata heuristic classifies HZ_PARTY_SITES as a hub. In practice it behaves as a durable association entity: it owns its own surrogate key (PARTY_SITE_ID), carries EDW-style audit and WHO columns, and serves as the parent for numerous descriptive child tables such as HZ_PARTY_SITES_EXT_B and HZ_PARTY_SITE_USES.
Key Information Stored
The table exposes 75 documented columns. The most consequential are summarized below.
- PARTY_SITE_ID — Surrogate primary key, enforced by HZ_PARTY_SITES_PK and by unique index HZ_PARTY_SITES_U1. Every downstream foreign key references this column.
- PARTY_SITE_NUMBER — Business-key candidate, enforced by unique index HZ_PARTY_SITES_U2. This is the user-facing site identifier.
- PARTY_ID — Foreign key to HZ_PARTIES, identifying the owning party.
- LOCATION_ID — Foreign key to HZ_LOCATIONS, pointing to the normalized address.
- STATUS — Controls whether the site is active and usable for transactions.
- IDENTIFYING_ADDRESS_FLAG — Marks the primary identifying address for the party.
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective-dating range for the site association.
- PARTY_SITE_NAME — Descriptive label for the site (for example, a branch or plant name).
- ADDRESSEE — Name of the recipient at the site, used on documents and correspondence.
- REGION and MAILSTOP — Sub-location details within a larger facility.
- ORIG_SYSTEM_REFERENCE — Legacy or external-system identifier for the site.
- DUNS_NUMBER_C and GLOBAL_LOCATION_NUMBER — Global trade identifiers for the site.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the TCA APIs.
- ATTRIBUTE1–20 and GLOBAL_ATTRIBUTE1–20 — Extensible descriptive flexfields.
- CREATED_BY_MODULE and APPLICATION_ID — Ownership and multi-org context indicators.
Common Use Cases and Queries
HZ_PARTY_SITES is queried whenever an application must resolve a party to a usable address. Typical reporting scenarios include customer address listings, supplier site directories, ship-to and bill-to assignments, and tax jurisdiction lookups.
A basic join returns the party name alongside its address details:
- SELECT ps.party_site_id, ps.party_site_number, hp.party_name, hl.address1, hl.city, hl.state, hl.postal_code FROM hz_party_sites ps, hz_parties hp, hz_locations hl WHERE ps.party_id = hp.party_id AND ps.location_id = hl.location_id AND ps.status = 'A';
To identify the identifying address for a party, add the predicate IDENTIFYING_ADDRESS_FLAG = 'Y'. To find sites active on a given date, filter on START_DATE_ACTIVE and END_DATE_ACTIVE. To locate a customer account site, join through HZ_CUST_ACCT_SITES_ALL on PARTY_SITE_ID, and then through HZ_CUST_SITE_USES_ALL to determine whether the site is used as a bill-to, ship-to, or statement site.
Related Objects
The FK metadata shows HZ_PARTY_SITES is referenced by well over one hundred tables across modules. The most significant relationships include:
- HZ_PARTIES and HZ_LOCATIONS — The two parent tables referenced by PARTY_ID and LOCATION_ID.
- HZ_CUST_ACCT_SITES_ALL — Links customer accounts to party sites via PARTY_SITE_ID; the primary path from AR customers to addresses.
- HZ_PARTY_SITE_USES — Defines the business purpose (bill-to, ship-to) of each site.
- HZ_CONTACT_POINTS — Phone, email, and other contact data attached through OWNER_TABLE_ID.
- HZ_PARTY_SITES_EXT_B and HZ_PARTY_SITES_EXT_TL — Extension and translatable attribute child tables.
- AP_INVOICE_PAYMENTS_ALL — References INVOICING_PARTY_SITE_ID for supplier payments.
- OE_HEADERS_IFACE_ALL, OE_LINES_IFACE_ALL, ASO_QUOTE_HEADERS_ALL, ASO_SHIPMENTS — Order and quotation ship-to, invoice-to, and sold-to references.
- WSH_CARRIER_SITES — Carrier site definitions via CARRIER_SITE_ID.
- ZX_PARTY_TAX_PROFILE — E-Business Tax profile linkage.
Because of this breadth, HZ_PARTY_SITES should be treated as a foundational reference object in any EBS data model, and joins to it should use the indexed PARTY_SITE_ID column wherever possible.
-
Table: HZ_PARTY_SITES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES, object_name:HZ_PARTY_SITES, status:VALID, product: AR - Receivables , description: Links party to physical locations , implementation_dba_data: AR.HZ_PARTY_SITES ,
-
Table: HZ_PARTY_SITES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES, object_name:HZ_PARTY_SITES, status:VALID, product: AR - Receivables , description: Links party to physical locations , implementation_dba_data: AR.HZ_PARTY_SITES ,
-
Lookup Type: SUBJECT_TABLE
12.1.1
product: AR - Receivables , meaning: Subject Table , description: Subject Type ,
-
Lookup Type: SUBJECT_TABLE
12.2.2
product: AR - Receivables , meaning: Subject Table , description: Subject Type ,
-
Lookup Type: OWNER_TABLE_NAME
12.2.2
product: AR - Receivables , meaning: Owner Table Name , description: Owner Table Name ,
-
Lookup Type: OWNER_TABLE_NAME
12.1.1
product: AR - Receivables , meaning: Owner Table Name , description: Owner Table Name ,
-
Lookup Type: TCA_OWNER_TABLE
12.1.1
product: AR - Receivables , meaning: TCA Owner Tables , description: TCA Owner Tables ,
-
Lookup Type: TCA_OWNER_TABLE
12.2.2
product: AR - Receivables , meaning: TCA Owner Tables , description: TCA Owner Tables ,
-
View: HZ_DQM_CS_CPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_CS_CPT_V, object_name:HZ_DQM_CS_CPT_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_CS_CPT_V ,
-
View: HZ_DQM_CS_CPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_CS_CPT_V, object_name:HZ_DQM_CS_CPT_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_CS_CPT_V ,
-
View: AR_CONS_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CONS_INV_V, object_name:AR_CONS_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CONS_INV_V ,
-
View: AR_CONS_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CONS_INV_V, object_name:AR_CONS_INV_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CONS_INV_V ,
-
View: AR_CMGT_PARTY_ACCOUNTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CMGT_PARTY_ACCOUNTS, object_name:AR_CMGT_PARTY_ACCOUNTS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CMGT_PARTY_ACCOUNTS ,
-
View: AR_CMGT_PARTY_ACCOUNTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_CMGT_PARTY_ACCOUNTS, object_name:AR_CMGT_PARTY_ACCOUNTS, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_CMGT_PARTY_ACCOUNTS ,
-
Table: HZ_IMP_ADDRESSES_INT
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_IMP_ADDRESSES_INT, object_name:HZ_IMP_ADDRESSES_INT, status:VALID, product: AR - Receivables , description: TCA import table for HZ_LOCATIONS and HZ_PARTY_SITES , implementation_dba_data: AR.HZ_IMP_ADDRESSES_INT ,
-
Table: HZ_IMP_ADDRESSES_INT
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_IMP_ADDRESSES_INT, object_name:HZ_IMP_ADDRESSES_INT, status:VALID, product: AR - Receivables , description: TCA import table for HZ_LOCATIONS and HZ_PARTY_SITES , implementation_dba_data: AR.HZ_IMP_ADDRESSES_INT ,
-
Table: HZ_PARTY_SITES_EXT_B
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES_EXT_B, object_name:HZ_PARTY_SITES_EXT_B, status:VALID, product: AR - Receivables , description: Stores extensible attributes for party sites. , implementation_dba_data: AR.HZ_PARTY_SITES_EXT_B ,
-
Table: HZ_CONTACT_RESTRICTIONS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CONTACT_RESTRICTIONS, object_name:HZ_CONTACT_RESTRICTIONS, status:VALID, product: AR - Receivables , description: Restrictions on contacting parties , implementation_dba_data: AR.HZ_CONTACT_RESTRICTIONS ,
-
Table: HZ_STAGED_CONTACT_POINTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_STAGED_CONTACT_POINTS, object_name:HZ_STAGED_CONTACT_POINTS, status:VALID, product: AR - Receivables , description: Contact point information that is staged for DQM. , implementation_dba_data: AR.HZ_STAGED_CONTACT_POINTS ,
-
Table: HZ_DQM_SYNC_INTERFACE
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_DQM_SYNC_INTERFACE, object_name:HZ_DQM_SYNC_INTERFACE, status:VALID, product: AR - Receivables , description: Stores the list of entities that have been updated by the DQM API. , implementation_dba_data: AR.HZ_DQM_SYNC_INTERFACE ,
-
Table: HZ_PARTY_SITES_EXT_B
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES_EXT_B, object_name:HZ_PARTY_SITES_EXT_B, status:VALID, product: AR - Receivables , description: Stores extensible attributes for party sites. , implementation_dba_data: AR.HZ_PARTY_SITES_EXT_B ,
-
Table: HZ_STAGED_CONTACT_POINTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_STAGED_CONTACT_POINTS, object_name:HZ_STAGED_CONTACT_POINTS, status:VALID, product: AR - Receivables , description: Contact point information that is staged for DQM. , implementation_dba_data: AR.HZ_STAGED_CONTACT_POINTS ,
-
Table: HZ_CONTACT_RESTRICTIONS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_CONTACT_RESTRICTIONS, object_name:HZ_CONTACT_RESTRICTIONS, status:VALID, product: AR - Receivables , description: Restrictions on contacting parties , implementation_dba_data: AR.HZ_CONTACT_RESTRICTIONS ,
-
Table: HZ_PARTY_SITES_EXT_TL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES_EXT_TL, object_name:HZ_PARTY_SITES_EXT_TL, status:VALID, product: AR - Receivables , description: Provides multilingual support for extensible party site attributes. , implementation_dba_data: AR.HZ_PARTY_SITES_EXT_TL ,
-
View: AR_DOCUMENT_TRANSFERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_DOCUMENT_TRANSFERS_V, object_name:AR_DOCUMENT_TRANSFERS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_DOCUMENT_TRANSFERS_V ,
-
View: AR_DOCUMENT_TRANSFERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_DOCUMENT_TRANSFERS_V, object_name:AR_DOCUMENT_TRANSFERS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_DOCUMENT_TRANSFERS_V ,
-
Lookup Type: HZ_EXT_ENTITIES
12.1.1
product: AR - Receivables , meaning: Entities for extensible attributes , description: Data model extensibility entities ,
-
Table: HZ_PARTY_SITES_EXT_TL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITES_EXT_TL, object_name:HZ_PARTY_SITES_EXT_TL, status:VALID, product: AR - Receivables , description: Provides multilingual support for extensible party site attributes. , implementation_dba_data: AR.HZ_PARTY_SITES_EXT_TL ,
-
Lookup Type: HZ_EXT_ENTITIES
12.2.2
product: AR - Receivables , meaning: Entities for extensible attributes , description: Data model extensibility entities ,
-
Table: HZ_DQM_SYNC_INTERFACE
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_DQM_SYNC_INTERFACE, object_name:HZ_DQM_SYNC_INTERFACE, status:VALID, product: AR - Receivables , description: Stores the list of entities that have been updated by the DQM API. , implementation_dba_data: AR.HZ_DQM_SYNC_INTERFACE ,
-
View: RA_CUSTOMER_TRX_CR_TRX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_CR_TRX_V, object_name:RA_CUSTOMER_TRX_CR_TRX_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_CR_TRX_V ,
-
View: HZ_MERGE_PARTY_SITE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_MERGE_PARTY_SITE_DETAILS_V, object_name:HZ_MERGE_PARTY_SITE_DETAILS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_MERGE_PARTY_SITE_DETAILS_V ,
-
View: HZ_MERGE_PARTY_SITE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_MERGE_PARTY_SITE_DETAILS_V, object_name:HZ_MERGE_PARTY_SITE_DETAILS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_MERGE_PARTY_SITE_DETAILS_V ,
-
View: RA_CUSTOMER_TRX_CR_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_CR_TRX_V, object_name:RA_CUSTOMER_TRX_CR_TRX_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_CR_TRX_V ,
-
View: TAX_EXEMPTIONS_QP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.TAX_EXEMPTIONS_QP_V, object_name:TAX_EXEMPTIONS_QP_V, status:VALID, product: AR - Receivables , description: Lists Candidate Exemption Certificates for the Bill To Customer and the Ship To Site , implementation_dba_data: APPS.TAX_EXEMPTIONS_QP_V ,
-
View: RA_CUSTOMER_BILL_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_BILL_VIEW, object_name:RA_CUSTOMER_BILL_VIEW, status:VALID, product: AR - Receivables , description: Information about customer who is billed , implementation_dba_data: APPS.RA_CUSTOMER_BILL_VIEW ,
-
View: TAX_EXEMPTIONS_QP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.TAX_EXEMPTIONS_QP_V, object_name:TAX_EXEMPTIONS_QP_V, status:VALID, product: AR - Receivables , description: Lists Candidate Exemption Certificates for the Bill To Customer and the Ship To Site , implementation_dba_data: APPS.TAX_EXEMPTIONS_QP_V ,
-
View: RA_CUSTOMER_SHIP_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_SHIP_VIEW, object_name:RA_CUSTOMER_SHIP_VIEW, status:VALID, product: AR - Receivables , description: Information about customer who gets the shipments , implementation_dba_data: APPS.RA_CUSTOMER_SHIP_VIEW ,
-
View: RA_CUSTOMER_BILL_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_BILL_VIEW, object_name:RA_CUSTOMER_BILL_VIEW, status:VALID, product: AR - Receivables , description: Information about customer who is billed , implementation_dba_data: APPS.RA_CUSTOMER_BILL_VIEW ,
-
View: RA_CUSTOMER_SHIP_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_SHIP_VIEW, object_name:RA_CUSTOMER_SHIP_VIEW, status:VALID, product: AR - Receivables , description: Information about customer who gets the shipments , implementation_dba_data: APPS.RA_CUSTOMER_SHIP_VIEW ,
-
Table: HZ_PARTY_SITE_USES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITE_USES, object_name:HZ_PARTY_SITE_USES, status:VALID, product: AR - Receivables , description: The way that a party uses a particular site or address , implementation_dba_data: AR.HZ_PARTY_SITE_USES ,
-
Table: HZ_PARTY_SITE_USES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTY_SITE_USES, object_name:HZ_PARTY_SITE_USES, status:VALID, product: AR - Receivables , description: The way that a party uses a particular site or address , implementation_dba_data: AR.HZ_PARTY_SITE_USES ,
-
View: AR_SITE_USE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_SITE_USE_V, object_name:AR_SITE_USE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_SITE_USE_V ,
-
Table: HZ_ORG_CONTACTS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_ORG_CONTACTS, object_name:HZ_ORG_CONTACTS, status:VALID, product: AR - Receivables , description: People as contacts for parties , implementation_dba_data: AR.HZ_ORG_CONTACTS ,
-
Table: HZ_ORG_CONTACTS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_ORG_CONTACTS, object_name:HZ_ORG_CONTACTS, status:VALID, product: AR - Receivables , description: People as contacts for parties , implementation_dba_data: AR.HZ_ORG_CONTACTS ,
-
View: HZ_DQM_PS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_PS_V, object_name:HZ_DQM_PS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_PS_V ,
-
View: AR_SITE_USE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_SITE_USE_V, object_name:AR_SITE_USE_V, status:VALID, product: AR - Receivables , description: (Release 11.5 Only) , implementation_dba_data: APPS.AR_SITE_USE_V ,
-
View: AR_PARTY_FIND_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_PARTY_FIND_V, object_name:AR_PARTY_FIND_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.AR_PARTY_FIND_V ,
-
View: HZ_DQM_PS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_PS_V, object_name:HZ_DQM_PS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_PS_V ,
-
View: HZ_DQM_AC_CS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_DQM_AC_CS_V, object_name:HZ_DQM_AC_CS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.HZ_DQM_AC_CS_V ,