Skip to content
Fusion Reference

HZ_LOCATIONS

Product: HZmaster

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

Notes

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.
In field listings, K marks a primary-key field.

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

Table fields: position, field name, description, data type, and flags. 13 fields.
#FieldDescriptionTypeFlags
1LOCATION_IDSurrogate key of the addressNUMBER
Key
2ADDRESS1Address line 1VARCHAR2
3ADDRESS2Address line 2VARCHAR2
4CITYCityVARCHAR2
5STATEStateVARCHAR2
6POSTAL_CODEPostal codeVARCHAR2
7COUNTRYCountry territory code — requiredVARCHAR2
8LATITUDELatitude for proximity analysisNUMBER
9LONGITUDELongitude for proximity analysisNUMBER
10TIMEZONE_CODETime zone of the address — the renamed EBS TIME_ZONE columnVARCHAR2
11VALIDATED_FLAGWhether the address passed validationVARCHAR2
12VALIDATION_STATUS_CODEStandardized address-validation resultVARCHAR2
13ORIG_SYSTEM_REFERENCELegacy-system address key — requiredVARCHAR2

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.

Query parameters
-- ============================================================
-- 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

  • HZ_PARTY_SITESHZ_LOCATIONSforeign key · N:1
    ON HZ_PARTY_SITES.LOCATION_ID = HZ_LOCATIONS.LOCATION_ID

Browse more Customers (TCA)tables →

Maintained by Summit Analytics, a supply chain analytics practice. The tools and references are free — the consulting is selective.

Part of the Summit Analytics reference library.

Work with the practice →

Not affiliated with or endorsed by Oracle. Oracle and Oracle Fusion Cloud Applications are registered trademarks of Oracle and/or its affiliates.