Search Results country_region
Overview
WSH_REGIONS_TL is the translation-enabled (TL) table within the Oracle Shipping Execution (WSH) schema that stores geographic region and zone information used throughout the logistics and shipping lifecycle. In Oracle EBS 12.1.1 and 12.2.2, it serves as the descriptive, language-dependent companion to the base region definition, holding continent, country, state, city, zone, and postal-code attributes that drive carrier rating, zone-based freight calculation, ship-to and ship-from validation, and geographic reporting. The table is owned by WSH and is documented as VALID in the ETRM repository.
From a dimensional modeling perspective, ETRM classifies WSH_REGIONS_TL as standalone based on its foreign-key structure. This is a heuristic classification, not a physical constraint: it suggests the table has no incoming or outgoing referential dependencies mined from FK metadata and can therefore be modeled independently as a reference/dimension rather than as a hub, link, or satellite. Practitioners designing a Data Vault layer should treat it as a standalone descriptive entity keyed by region and language.
Key Information Stored
The table is documented with 18 physical columns. The primary key WSH_REGIONS_TL_PK1 is composite, comprising REGION_ID and LANGUAGE. A unique index, WSH_REGIONS_TL_U1, mirrors the same column pair (REGION_ID, LANGUAGE) and represents the business-key candidate for this object. The pairing of a surrogate REGION_ID with a LANGUAGE code is what renders this a TL table: one logical region fans out into one row per installed language.
- REGION_ID — the numeric surrogate identifier that joins to the base region definitions and other shipping entities.
- LANGUAGE — the language code that, together with REGION_ID, forms the composite primary key and unique business key.
- SOURCE_LANG — the base language from which the translated row was derived.
- CONTINENT — the translated continent name.
- COUNTRY — the translated country name.
- COUNTRY_REGION — the broader regional grouping within a country.
- STATE — the translated state or province designation.
- CITY — the translated city name.
- ZONE — the shipping zone label used for rating and routing logic.
- COUNTY — the translated county or sub-state administrative area.
- POSTAL_CODE_FROM / POSTAL_CODE_TO — the postal-code range bounds associated with the region/zone entry.
- ALTERNATE_NAME — an alternative or legacy name for the region.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard EBS who-column audit attributes.
Common Use Cases and Queries
Typical uses include freight rating and zone lookup, address validation for ship-to and ship-from parties, and multilingual geographic reporting. A frequently used pattern retrieves region descriptions in a specific language while falling back to the source language:
SELECT region_id, country, state, city, zone, postal_code_from, postal_code_to
FROM wsh_regions_tl
WHERE language = USERENV('LANG')
ORDER BY country, state, city;
To resolve a postal code to its zone for a given language, query the postal-code range columns:
SELECT zone, country, state
FROM wsh_regions_tl
WHERE language = 'US'
AND :postal_code BETWEEN postal_code_from AND postal_code_to;
For validation reports, joining all translations for one region is achieved by selecting on REGION_ID with an equality predicate on LANGUAGE, exploiting the WSH_REGIONS_TL_U1 unique index for efficient access.
Related Objects
The most significant relationships center on REGION_ID, the column shared with base and transactional shipping entities. While ETRM classifies the table as standalone, practical joins include:
- WSH_REGIONS_B / base region tables — joined on REGION_ID to obtain language-independent attributes.
- WSH_CARRIER_SERVICES — rating and service definitions that reference geographic zones.
- WSH_RATE_GEOGRAPHIES / rate zone tables — freight rate geographies linked by region and zone.
- WSH_TRIPS and trip stops — movement records referencing ship-from and ship-to locations.
- WSH_DELIVERY_ASSIGNMENTS — delivery routing that depends on destructured location and zone data.
- HR_LOCATIONS_ALL — organization locations validated against region and country values.
- FND_LANGUAGES — supplies the LANGUAGE and SOURCE_LANG codes used by this TL table.
- HZ_LOCATIONS / party site tables — address data that map to region rows during shipping.
These associations are predominantly logical joins on REGION_ID rather than enforced foreign keys, consistent with the standalone classification reported in the ETRM metadata.
-
Table: WSH_REGIONS_TL
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_REGIONS_TL, object_name:WSH_REGIONS_TL, status:VALID, product: WSH - Shipping Execution , description: Stores translated geographic region information including region and zone names , implementation_dba_data: WSH.WSH_REGIONS_TL ,
-
Table: WSH_REGIONS_TL_INTERFACE
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_REGIONS_TL_INTERFACE, object_name:WSH_REGIONS_TL_INTERFACE, status:VALID, product: WSH - Shipping Execution , description: Regions interface table (translated) - used to store region data before upload into regular region tables , implementation_dba_data: WSH.WSH_REGIONS_TL_INTERFACE ,
-
Table: MSC_REGIONS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_REGIONS, object_name:MSC_REGIONS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table contains geographical regions data , implementation_dba_data: MSC.MSC_REGIONS ,
-
Table: WSH_REGIONS_TL_INTERFACE
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_REGIONS_TL_INTERFACE, object_name:WSH_REGIONS_TL_INTERFACE, status:VALID, product: WSH - Shipping Execution , description: Regions interface table (translated) - used to store region data before upload into regular region tables , implementation_dba_data: WSH.WSH_REGIONS_TL_INTERFACE ,
-
Table: WSH_REGIONS_TL
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_REGIONS_TL, object_name:WSH_REGIONS_TL, status:VALID, product: WSH - Shipping Execution , description: Stores translated geographic region information including region and zone names , implementation_dba_data: WSH.WSH_REGIONS_TL ,
-
Table: MSC_REGIONS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_REGIONS, object_name:MSC_REGIONS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: This table contains geographical regions data , implementation_dba_data: MSC.MSC_REGIONS ,
-
Table: MSC_ST_REGIONS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_REGIONS, object_name:MSC_ST_REGIONS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The staging table used by the collection program to validate and process data for table MSC_REGIONS. , implementation_dba_data: MSC.MSC_ST_REGIONS ,
-
Table: MSC_ST_REGIONS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_REGIONS, object_name:MSC_ST_REGIONS, status:VALID, product: MSC - Advanced Supply Chain Planning , description: The staging table used by the collection program to validate and process data for table MSC_REGIONS. , implementation_dba_data: MSC.MSC_ST_REGIONS ,
-
VIEW: WSH.WSH_REGIONS_TL_INTERFACE#
12.2.2
-
VIEW: MSC.MSC_ST_REGIONS#
12.2.2
-
VIEW: WSH.WSH_REGIONS_TL#
12.2.2
-
VIEW: MSC.MSC_REGIONS#
12.2.2
-
VIEW: WSH.WSH_REGIONS_TL#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_REGIONS_TL#, status:VALID,
-
VIEW: WSH.WSH_REGIONS_TL_INTERFACE#
12.2.2
owner:WSH, object_type:VIEW, object_name:WSH_REGIONS_TL_INTERFACE#, status:VALID,
-
VIEW: APPS.WSH_ZONE_REGIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ZONE_REGIONS_V, object_name:WSH_ZONE_REGIONS_V, status:VALID,
-
VIEW: APPS.WSH_REGION_LOCATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGION_LOCATIONS_VL, object_name:WSH_REGION_LOCATIONS_VL, status:VALID,
-
VIEW: MSC.MSC_ST_REGIONS#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_ST_REGIONS#, status:VALID,
-
VIEW: APPS.WSH_REGIONS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGIONS_INTERFACE_V, object_name:WSH_REGIONS_INTERFACE_V, status:VALID,
-
VIEW: APPS.WSH_ZONE_REGIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ZONE_REGIONS_V, object_name:WSH_ZONE_REGIONS_V, status:VALID,
-
VIEW: APPS.POA_REP_PO_PURCHASES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:POA_REP_PO_PURCHASES_V, status:VALID,
-
VIEW: APPS.WSH_REGION_LOCATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGION_LOCATIONS_VL, object_name:WSH_REGION_LOCATIONS_VL, status:VALID,
-
VIEW: APPS.POA_REP_AP_SPEND_V
12.1.1
owner:APPS, object_type:VIEW, object_name:POA_REP_AP_SPEND_V, status:VALID,
-
TABLE: WSH.WSH_REGIONS_TL_INTERFACE
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_REGIONS_TL_INTERFACE, object_name:WSH_REGIONS_TL_INTERFACE, status:VALID,
-
VIEW: APPS.WSH_REGIONS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGIONS_INTERFACE_V, object_name:WSH_REGIONS_INTERFACE_V, status:VALID,
-
TABLE: MSC.MSC_ST_REGIONS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_REGIONS, object_name:MSC_ST_REGIONS, status:VALID,
-
TABLE: MSC.MSC_ST_REGIONS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_ST_REGIONS, object_name:MSC_ST_REGIONS, status:VALID,
-
VIEW: MSC.MSC_REGIONS#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_REGIONS#, status:VALID,
-
TABLE: MSC.MSC_REGIONS
12.1.1
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_REGIONS, object_name:MSC_REGIONS, status:VALID,
-
TABLE: WSH.WSH_REGIONS_TL
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_REGIONS_TL, object_name:WSH_REGIONS_TL, status:VALID,
-
TABLE: WSH.WSH_REGIONS_TL
12.1.1
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_REGIONS_TL, object_name:WSH_REGIONS_TL, status:VALID,
-
TABLE: WSH.WSH_REGIONS_TL_INTERFACE
12.2.2
owner:WSH, object_type:TABLE, fnd_design_data:WSH.WSH_REGIONS_TL_INTERFACE, object_name:WSH_REGIONS_TL_INTERFACE, status:VALID,
-
View: WSH_REGIONS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGIONS_INTERFACE_V, object_name:WSH_REGIONS_INTERFACE_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_REGIONS_INTERFACE_V ,
-
VIEW: APPS.WSH_REGIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGIONS_V, object_name:WSH_REGIONS_V, status:VALID,
-
View: WSH_REGION_LOCATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGION_LOCATIONS_VL, object_name:WSH_REGION_LOCATIONS_VL, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_REGION_LOCATIONS_VL ,
-
View: WSH_REGION_LOCATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGION_LOCATIONS_VL, object_name:WSH_REGION_LOCATIONS_VL, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_REGION_LOCATIONS_VL ,
-
View: WSH_ZONE_REGIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ZONE_REGIONS_V, object_name:WSH_ZONE_REGIONS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ZONE_REGIONS_V ,
-
View: WSH_REGIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGIONS_V, object_name:WSH_REGIONS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_REGIONS_V ,
-
View: WSH_REGIONS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGIONS_INTERFACE_V, object_name:WSH_REGIONS_INTERFACE_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_REGIONS_INTERFACE_V ,
-
View: WSH_ZONE_REGIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ZONE_REGIONS_V, object_name:WSH_ZONE_REGIONS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ZONE_REGIONS_V ,
-
VIEW: APPS.WSH_REGIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGIONS_V, object_name:WSH_REGIONS_V, status:VALID,
-
TABLE: MSC.MSC_REGIONS
12.2.2
owner:MSC, object_type:TABLE, fnd_design_data:MSC.MSC_REGIONS, object_name:MSC_REGIONS, status:VALID,
-
VIEW: APPS.JTF_LOC_HIERARCHIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_LOC_HIERARCHIES_VL, object_name:JTF_LOC_HIERARCHIES_VL, status:VALID,
-
View: WSH_REGIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_REGIONS_V, object_name:WSH_REGIONS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_REGIONS_V ,
-
VIEW: APPS.JTF_LOC_HIERARCHIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_LOC_HIERARCHIES_VL, object_name:JTF_LOC_HIERARCHIES_VL, status:VALID,
-
TABLE: JTF.JTF_LOC_HIERARCHIES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_LOC_HIERARCHIES_B, object_name:JTF_LOC_HIERARCHIES_B, status:VALID,
-
TABLE: JTF.JTF_LOC_HIERARCHIES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_LOC_HIERARCHIES_B, object_name:JTF_LOC_HIERARCHIES_B, status:VALID,
-
APPS.WSH_REGIONS_PKG SQL Statements
12.1.1
-
APPS.WSH_REGIONS_PKG SQL Statements
12.2.2
-
PACKAGE: APPS.WSH_REGIONS_SEARCH_PKG
12.1.1
-
PACKAGE: APPS.WSH_REGIONS_SEARCH_PKG
12.2.2