HZ_LOCATIONS
Product: HZmasterThe location master — the physical postal address itself (street, city, postal code, country, coordinates), shared by every party and account site that points at it
One address, stored once — dedupe-friendly by design; parties reach it only through party sites. COUNTRY is required (FND territory code). The EBS TIME_ZONE column is renamed TIMEZONE_CODE here. VALIDATED_FLAG and VALIDATION_STATUS_CODE carry address-validation state.
What the badges mean
- master
- Data class: what the table holds — master data, transaction documents, control/configuration, interface/staging, or a documented view.
Extract access
The delivered surfaces that reach this table — the BICC extract data store (PVO) for bulk extraction and the OTBI subject areas for real-time queries. There is no SQL path to the SaaS database.
- CrmAnalyticsAM.CrmExtractAM.HzBiccExtractAM.LocationExtractPVO
Location data store — keyed on LocationId. No dedicated subject area — the address fields ride the customer subject areas as dimensions.
Oracle data-store documentation →
Fields
13 fields · 1 key
| # | Field | Description | Type | Flags |
|---|---|---|---|---|
| 1 | LOCATION_ID | Surrogate key of the address | NUMBER | Key |
| 2 | ADDRESS1 | Address line 1 | VARCHAR2 | |
| 3 | ADDRESS2 | Address line 2 | VARCHAR2 | |
| 4 | CITY | City | VARCHAR2 | |
| 5 | STATE | State | VARCHAR2 | |
| 6 | POSTAL_CODE | Postal code | VARCHAR2 | |
| 7 | COUNTRY | Country territory code — required | VARCHAR2 | |
| 8 | LATITUDE | Latitude for proximity analysis | NUMBER | |
| 9 | LONGITUDE | Longitude for proximity analysis | NUMBER | |
| 10 | TIMEZONE_CODE | Time zone of the address — the renamed EBS TIME_ZONE column | VARCHAR2 | |
| 11 | VALIDATED_FLAG | Whether the address passed validation | VARCHAR2 | |
| 12 | VALIDATION_STATUS_CODE | Standardized address-validation result | VARCHAR2 | |
| 13 | ORIG_SYSTEM_REFERENCE | Legacy-system address key — required | VARCHAR2 |
Field provenance: hand-curated. 1 key field.
Boilerplate SQL
Starting point for reading the BICC-landed copy of HZ_LOCATIONSon Databricks — real DATE columns need no conversion, and the org anchor and the LAST_UPDATE_DATE watermark (the column incremental BICC extracts key on) are already in place. Set your Unity Catalog location, schema, and org values below; they’re substituted into the SQL and the copy button.
-- ============================================================
-- Table : HZ_LOCATIONS — The location master — the physical postal address itself (street, city, postal code, country, coordinates), shared by every party and account site that points at it
-- Purpose: Column-selected read of HZ_LOCATIONS — auto-generated from field metadata
-- Grain : One row per LOCATION_ID
-- Notes : Auto-generated skeleton for Oracle Fusion Cloud data landed in your lakehouse by a BICC extract — there is no SQL path to the SaaS database. Column names follow Oracle's table documentation — if your landed data still carries PVO attribute headers, map names first; see quirks #pvo-drift. Dates are real DATE/TIMESTAMP columns — no conversion needed. WHO audit columns omitted (see the quirks guide); the optional LAST_UPDATE_DATE watermark filter supports incremental extracts.
-- ============================================================
SELECT
t.LOCATION_ID AS "Surrogate key of the address",
t.ADDRESS1 AS "Address line 1",
t.ADDRESS2 AS "Address line 2",
t.CITY AS "City",
t.STATE AS "State",
t.POSTAL_CODE AS "Postal code",
t.COUNTRY AS "Country territory code — required",
t.LATITUDE AS "Latitude for proximity analysis",
t.LONGITUDE AS "Longitude for proximity analysis",
t.TIMEZONE_CODE AS "Time zone of the address — the renamed EBS TIME_ZONE column",
t.VALIDATED_FLAG AS "Whether the address passed validation",
t.VALIDATION_STATUS_CODE AS "Standardized address-validation result",
t.ORIG_SYSTEM_REFERENCE AS "Legacy-system address key — required"
FROM <catalog>.<schema>.HZ_LOCATIONS t
WHERE
1 = 1 -- no partition column on this table; the filters below are optional
-- AND t.LOCATION_ID = <LOCATION_ID>
-- AND t.LAST_UPDATE_DATE >= TIMESTAMP '<watermark>' -- the column incremental BICC extracts key on
ORDER BY t.LOCATION_ID;4 parameters not filled: <catalog>, <schema>, <LOCATION_ID>, <watermark>
Relationships
1-hop neighbors — click a table to navigate there. FND lookup decode and translation edges are highlighted; they’re the joins newcomers most often get wrong.
Join details
ON HZ_PARTY_SITES.LOCATION_ID = HZ_LOCATIONS.LOCATION_ID