Search Results hz_party_sites_ext_b
Overview
HZ_PARTY_SITES_EXT_B is an Oracle E-Business Suite table owned by the AR (Receivables) schema that stores extensible attributes for party sites. In the EBS Trading Community Architecture (TCA) model, a party site represents a physical location associated with a party, such as a customer address. While HZ_PARTY_SITES holds the core address and location data, HZ_PARTY_SITES_EXT_B provides the configurable descriptor flexfield storage that allows implementers to capture organization-specific information without altering the base table structure. The "_B" suffix denotes that this is the base table of an extensible attribute pair, typically accompanied by a corresponding "_TL" table for translated or language-specific content.
The table is registered as VALID in the ETRM documentation for 12.1.1 and 12.2.2 and contains 58 documented columns. From a Data Vault modeling perspective, the heuristic classification is satellite-leaning: the table extends HZ_PARTY_SITES with descriptive attributes keyed by a surrogate identifier, rather than representing an independent business entity or an associative relationship between two hubs.
Key Information Stored
The table is organized around a surrogate primary key and a foreign key to the parent party site, with the remaining columns dedicated to extension attribute storage. The most significant columns are:
- EXTENSION_ID — The surrogate primary key, enforced by HZ_PARTY_SITES_EXT_B_PK and also covered by the unique index HZ_PARTY_SITES_EXT_B_U1. This is the technical identifier for each extension record.
- PARTY_SITE_ID — The foreign key referencing HZ_PARTY_SITES. This column is the true business link between the extension row and the party site it describes.
- ATTR_GROUP_ID — Identifies the attribute group or context under which the extension attributes are defined, supporting multiple descriptor contexts per site.
- C_EXT_ATTR1 through C_EXT_ATTR20 — Twenty character-type extensible attributes holding text values such as codes, names, and free-form descriptors.
- N_EXT_ATTR1 through N_EXT_ATTR20 — Twenty numeric-type extensible attributes for amounts, counts, and other quantitative data.
- D_EXT_ATTR1 through D_EXT_ATTR10 — Ten date-type extensible attributes for temporal values such as certification or review dates.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard EBS audit columns recording who created and last modified each row and when.
Note that the documented unique index covers EXTENSION_ID only; PARTY_SITE_ID functions as the business-key candidate for joining back to the parent site.
Common Use Cases and Queries
The principal use case is retrieving organization-specific attributes for a customer or party site alongside the base address data. A typical query joins the extension table to its parent:
- SELECT ps.party_site_id, ps.party_site_name, ext.c_ext_attr1, ext.n_ext_attr1, ext.d_ext_attr1 FROM hz_party_sites ps, hz_party_sites_ext_b ext WHERE ps.party_site_id = ext.party_site_id;
- Filtering by context using ATTR_GROUP_ID to isolate a particular descriptor group: WHERE ext.attr_group_id = :group_id.
- Reporting on date-based extensions, for example identifying sites whose D_EXT_ATTR values fall within a compliance window.
- Integration and migration scripts that populate extension attributes after the base party site is created, since the foreign key requires the parent row to exist first.
- Audit queries using CREATION_DATE and LAST_UPDATE_DATE to track recently modified extension data.
Because the extension columns are generic, reports must map each C_/N_/D_ attribute to its business meaning through the descriptor setup, typically configured in the TCA extensible attribute definition screens.
Related Objects
The following objects are most significant in relation to HZ_PARTY_SITES_EXT_B:
- HZ_PARTY_SITES — The parent table; joined via HZ_PARTY_SITES_EXT_B.PARTY_SITE_ID = HZ_PARTY_SITES.PARTY_SITE_ID. This is the only documented foreign key relationship.
- HZ_PARTY_SITES_EXT_B_PK — The primary key constraint on EXTENSION_ID.
- HZ_PARTY_SITES_EXT_B_U1 — The unique index on EXTENSION_ID, serving as the business-key candidate.
- HZ_LOCATIONS — Holds the underlying address details referenced by party sites; indirectly related through HZ_PARTY_SITES.
- HZ_PARTIES — The party master; reachable through HZ_PARTY_SITES for reporting that combines party and site extension data.
- HZ_PARTY_SITE_USES — Defines the business purposes for which a party site is used, useful when extension attributes are purpose-specific.
- HZ_CUST_ACCT_SITES_ALL — Links party sites to customer accounts, providing the path from extension attributes to Receivables transactions.
- TCA extensible attribute APIs — The public application programming interfaces that maintain extension rows and enforce descriptor validation.
-
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_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 ,
-
VIEW: APPS.HZ_PARTY_SITES_EXT_B_DFV
12.1.1
-
VIEW: APPS.HZ_PARTY_SITES_EXT_B_DFV
12.2.2
-
SYNONYM: APPS.HZ_PARTY_SITES_EXT_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES_EXT_B, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES_EXT_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES_EXT_B, status:VALID,
-
VIEW: AR.HZ_PARTY_SITES_EXT_B#
12.2.2
owner:AR, object_type:VIEW, object_name:HZ_PARTY_SITES_EXT_B#, status:VALID,
-
VIEW: APPS.HZ_PARTY_SITES_EXT_VL
12.2.2
-
VIEW: APPS.HZ_PARTY_SITES_EXT_VL
12.1.1
-
VIEW: AR.HZ_PARTY_SITES_EXT_B#
12.2.2
-
VIEW: APPS.HZ_PARTY_SITES_EXT_B_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:HZ_PARTY_SITES_EXT_B_DFV, status:VALID,
-
VIEW: APPS.HZ_PARTY_SITES_EXT_B_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:HZ_PARTY_SITES_EXT_B_DFV, status:VALID,
-
PACKAGE BODY: APPS.HZ_PARTY_SITES_EXT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_PARTY_SITES_EXT_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_PARTY_SITES_EXT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_PARTY_SITES_EXT_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_EXTRACT_EXT_ATTRI_BO_PVT, status:VALID,
-
APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HZ_POPULATE_BOT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_POPULATE_BOT_PKG, status:VALID,
-
PACKAGE BODY: APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_EXTRACT_EXT_ATTRI_BO_PVT, status:VALID,
-
APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.HZ_POPULATE_BOT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_POPULATE_BOT_PKG, status:VALID,
-
APPS.HZ_PARTY_SITES_EXT_PKG SQL Statements
12.2.2
-
APPS.HZ_PARTY_SITES_EXT_PKG SQL Statements
12.1.1
-
View: HZ_PARTY_SITES_EXT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_SITES_EXT_VL, object_name:HZ_PARTY_SITES_EXT_VL, status:VALID, product: AR - Receivables , description: Multilingual view of extensible attributes for party sites , implementation_dba_data: APPS.HZ_PARTY_SITES_EXT_VL ,
-
View: HZ_PARTY_SITES_EXT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_SITES_EXT_VL, object_name:HZ_PARTY_SITES_EXT_VL, status:VALID, product: AR - Receivables , description: Multilingual view of extensible attributes for party sites , implementation_dba_data: APPS.HZ_PARTY_SITES_EXT_VL ,
-
TABLE: AR.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,
-
TABLE: AR.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,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.HZ_PARTY_SITES_EXT_PKG
12.2.2
-
PACKAGE BODY: APPS.HZ_PARTY_SITES_EXT_PKG
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.HZ_PARTY_SITES_EXT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_SITES_EXT_VL, object_name:HZ_PARTY_SITES_EXT_VL, status:VALID,
-
VIEW: APPS.HZ_PARTY_SITES_EXT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.HZ_PARTY_SITES_EXT_VL, object_name:HZ_PARTY_SITES_EXT_VL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.HZ_EXTENSIBILITY_PUB
12.1.1
-
PACKAGE: APPS.HZ_EXTENSIBILITY_PUB
12.2.2
-
PACKAGE BODY: APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT
12.1.1
-
PACKAGE BODY: APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT
12.2.2
-
APPS.HZ_PARTY_SITES_EXT_PKG dependencies on HZ_PARTY_SITES_EXT_B
12.2.2
-
APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT dependencies on HZ_PARTY_SITES_EXT_B
12.2.2
-
APPS.HZ_POPULATE_BOT_PKG dependencies on HZ_PARTY_SITES_EXT_B
12.2.2
-
APPS.HZ_POPULATE_BOT_PKG dependencies on HZ_PARTY_SITES_EXT_B
12.1.1
-
APPS.HZ_EXTRACT_EXT_ATTRI_BO_PVT dependencies on HZ_PARTY_SITES_EXT_B
12.1.1
-
APPS.HZ_PARTY_SITES_EXT_PKG dependencies on HZ_PARTY_SITES_EXT_B
12.1.1
-
APPS.HZ_POPULATE_BOT_PKG SQL Statements
12.1.1
-
APPS.HZ_POPULATE_BOT_PKG SQL Statements
12.2.2
-
APPS.HZ_POPULATE_BOT_PKG dependencies on HZ_PARTY_SITES
12.1.1