Search Results hz_locations
Overview
The HZ_LOCATIONS table is a core master data table within Oracle E-Business Suite (EBS), specifically under the Receivables (AR) product family. It serves as the central repository for storing normalized physical address data across the entire application. Its primary role is to eliminate data redundancy by providing a single source of truth for address information, which is then referenced by numerous other entities such as customer sites (HZ_PARTY_SITES), bank accounts (IBY_BANKACCT), and service requests (CS_INCIDENTS_ALL_B). This design ensures consistency and integrity in address management throughout modules including Order Management, Receivables, Payables, and Customer Relationship Management.
Key Information Stored
The table stores comprehensive address components. The primary key is LOCATION_ID, a unique system-generated identifier. Key descriptive columns include ADDRESS1 through ADDRESS4 for street-level details, CITY, POSTAL_CODE, and STATE. Critical foreign key columns link to reference data: COUNTRY references FND_TERRITORIES, and LANGUAGE references FND_LANGUAGES. The table also supports globalization and logistics with fields like TIMEZONE_ID (linked to HZ_TIMEZONES), COUNTY, and PROVINCE. Additional columns manage data lifecycle (CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE) and validation status (VALIDATED_FLAG).
Common Use Cases and Queries
Common operational and reporting scenarios involve joining HZ_LOCATIONS to related entities. A frequent use case is retrieving the complete address for a customer's ship-to site. Technical consultants often query this table to diagnose data issues or for custom reporting. Sample SQL patterns include fetching addresses for a specific party or validating address standardization.
- Finding addresses for a specific customer party:
SELECT loc.address1, loc.city, loc.postal_code, ter.territory_short_name
FROM hz_locations loc, hz_party_sites ps, fnd_territories ter
WHERE loc.location_id = ps.location_id
AND ps.party_id = :p_party_id
AND loc.country = ter.territory_code; - Identifying locations within a specific postal code range:
SELECT location_id, address1, city, state
FROM hz_locations
WHERE postal_code BETWEEN '10000' AND '20000'
AND country = 'US';
Related Objects
As indicated by the extensive foreign key relationships in the metadata, HZ_LOCATIONS is a foundational table referenced across the EBS suite. Key dependent objects include:
- HZ_PARTY_SITES: The primary link between a location and a customer, supplier, or partner (HZ_PARTIES).
- HZ_LOCATION_PROFILES: Stores additional profile and classification information for a location.
- IBY_BANKACCT & IBY_CREDITCARD: Reference locations for banking and payment details.
- CS_INCIDENTS_ALL_B: Links service requests to a physical incident location.
- ZX_LINES_DET_FACTORS: Referenced for tax determination using ship-to and ship-from locations.
- Various TCA Extension Tables: Such as HZ_LOCATIONS_EXT_B and HZ_LOCATIONS_EXT_TL for extended attributes and translations.
The table's integrity is maintained through foreign key constraints to reference tables like FND_TERRITORIES and FND_LANGUAGES, ensuring valid country and language codes.
-
Table: HZ_LOCATIONS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOCATIONS, object_name:HZ_LOCATIONS, status:VALID, product: AR - Receivables , description: Physical addresses , implementation_dba_data: AR.HZ_LOCATIONS ,
-
Table: HZ_LOCATIONS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOCATIONS, object_name:HZ_LOCATIONS, status:VALID, product: AR - Receivables , description: Physical addresses , implementation_dba_data: AR.HZ_LOCATIONS ,
-
Concurrent Program: ARXFILLGEO
12.1.1
execution_filename: HZ_LOCATION_PUB.FILL_GEOMETRY_FOR_LOCATIONS , product: AR - Receivables , user_name: ARXFILLGEO , description: Fill the geometry column of hz_locations table , argument_method: Standard , enabled: No , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: ARXFILLGEO
12.2.2
execution_filename: HZ_LOCATION_PUB.FILL_GEOMETRY_FOR_LOCATIONS , product: AR - Receivables , user_name: ARXFILLGEO , description: Fill the geometry column of hz_locations table , argument_method: Standard , enabled: No , execution_method: PL/SQL Stored Procedure ,
-
Lookup Type: HZ_GEO_LOC_TABLE_NAME
12.1.1
product: AR - Receivables , meaning: Geography Name Referencing Tables , description: Geography Name Referencing Tables ,
-
Lookup Type: TCA_OWNER_TABLE
12.1.1
product: AR - Receivables , meaning: TCA Owner Tables , description: TCA Owner Tables ,
-
Lookup Type: HZ_GEO_LOC_TABLE_NAME
12.2.2
product: AR - Receivables , meaning: Geography Name Referencing Tables , description: Geography Name Referencing Tables ,
-
Concurrent Program: ARHGEOUP
12.1.1
execution_filename: HZ_ELOCATION_PKG.UPDATE_GEOMETRY , product: AR - Receivables , user_name: ARHGEOUP , description: Batch update Geometry column in HZ_LOCATIONS , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Table: HZ_LOCATION_PROFILES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOCATION_PROFILES, object_name:HZ_LOCATION_PROFILES, status:VALID, product: AR - Receivables , description: The HZ_LOCATION_PROFILES table stores information, including a history of any changes and address validations for a subset of attributes from the HZ_LOCATIONS table , implementation_dba_data: AR.HZ_LOCATION_PROFILES ,
-
Concurrent Program: ARHGEOUP
12.2.2
execution_filename: HZ_ELOCATION_PKG.UPDATE_GEOMETRY_ALL , product: AR - Receivables , user_name: ARHGEOUP , description: Batch update Geometry column in HZ_LOCATIONS , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Lookup Type: TCA_OWNER_TABLE
12.2.2
product: AR - Receivables , meaning: TCA Owner Tables , description: TCA Owner Tables ,
-
Table: HZ_LOCATION_PROFILES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOCATION_PROFILES, object_name:HZ_LOCATION_PROFILES, status:VALID, product: AR - Receivables , description: The HZ_LOCATION_PROFILES table stores information, including a history of any changes and address validations for a subset of attributes from the HZ_LOCATIONS table , implementation_dba_data: AR.HZ_LOCATION_PROFILES ,
-
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_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_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 ,
-
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 ,
-
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_LOC_ASSIGNMENTS_OBS
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOC_ASSIGNMENTS_OBS, object_name:HZ_LOC_ASSIGNMENTS_OBS, status:VALID, product: AR - Receivables , description: No longer used in R12. , implementation_dba_data: AR.HZ_LOC_ASSIGNMENTS_OBS ,
-
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_LOC_ASSIGNMENTS_OBS
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOC_ASSIGNMENTS_OBS, object_name:HZ_LOC_ASSIGNMENTS_OBS, status:VALID, product: AR - Receivables , description: No longer used in R12. , implementation_dba_data: AR.HZ_LOC_ASSIGNMENTS_OBS ,
-
Table: HZ_LOCATIONS_EXT_B
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOCATIONS_EXT_B, object_name:HZ_LOCATIONS_EXT_B, status:VALID, product: AR - Receivables , description: Stores extensible attributes for locations. , implementation_dba_data: AR.HZ_LOCATIONS_EXT_B ,
-
Table: HZ_LOCATIONS_EXT_TL
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOCATIONS_EXT_TL, object_name:HZ_LOCATIONS_EXT_TL, status:VALID, product: AR - Receivables , description: Provides multilingual support for extensible location attributes. , implementation_dba_data: AR.HZ_LOCATIONS_EXT_TL ,
-
Table: HZ_LOCATIONS_EXT_B
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOCATIONS_EXT_B, object_name:HZ_LOCATIONS_EXT_B, status:VALID, product: AR - Receivables , description: Stores extensible attributes for locations. , implementation_dba_data: AR.HZ_LOCATIONS_EXT_B ,
-
Lookup Type: HZ_EXT_ENTITIES
12.1.1
product: AR - Receivables , meaning: Entities for extensible attributes , description: Data model extensibility entities ,
-
Table: HZ_LOC_ASSIGNMENTS
12.2.2
product: AR - Receivables , description: Relationship between a location and a tax authority defined in AR_LOCATION_COMBINATIONS , implementation_dba_data: Not implemented in this database ,
-
Table: HZ_LOCATIONS_EXT_TL
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_LOCATIONS_EXT_TL, object_name:HZ_LOCATIONS_EXT_TL, status:VALID, product: AR - Receivables , description: Provides multilingual support for extensible location attributes. , implementation_dba_data: AR.HZ_LOCATIONS_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_LOC_ASSIGNMENTS
12.1.1
product: AR - Receivables , description: Relationship between a location and a tax authority defined in AR_LOCATION_COMBINATIONS , implementation_dba_data: Not implemented in this database ,
-
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: AR_REMIT_TO_STATE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_STATE, object_name:AR_REMIT_TO_STATE, status:VALID, product: AR - Receivables , description: This view combines all STATE values in AR_LOCATION_VALUES and the DEFAULT lookup code in AR_LOOKUPS , implementation_dba_data: APPS.AR_REMIT_TO_STATE ,
-
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_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: 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 ,
-
Table: HZ_TIMEZONES
12.2.2
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_TIMEZONES, object_name:HZ_TIMEZONES, status:VALID, product: AR - Receivables , description: Time zone information , implementation_dba_data: AR.HZ_TIMEZONES ,
-
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.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: AR_REMIT_TO_STATE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_REMIT_TO_STATE, object_name:AR_REMIT_TO_STATE, status:VALID, product: AR - Receivables , description: This view combines all STATE values in AR_LOCATION_VALUES and the DEFAULT lookup code in AR_LOOKUPS , implementation_dba_data: APPS.AR_REMIT_TO_STATE ,
-
Table: HZ_TIMEZONES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_TIMEZONES, object_name:HZ_TIMEZONES, status:VALID, product: AR - Receivables , description: Time zone information , implementation_dba_data: AR.HZ_TIMEZONES ,
-
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 ,
-
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 ,
-
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 ,
-
Lookup Type: ENTITY_NAME
12.2.2
product: AR - Receivables , meaning: ENTITY_NAME , description: Entities that are supported by lead import to capture flex field info ,
-
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 ,
-
Lookup Type: ENTITY_NAME
12.1.1
product: AR - Receivables , meaning: ENTITY_NAME , description: Entities that are supported by lead import to capture flex field info ,
-
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: 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_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 ,
-
View: HZ_DQM_AC_CS_V
12.2.2
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 ,
-
View: AR_PARTY_FIND_V
12.1.1
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 ,