Search Results rrs_trade_area_groups_tl
Overview
RRS_TRADE_AREA_GROUPS_TL is a translation table in the RRS (Site Management) product schema of Oracle E-Business Suite, present in both 12.1.1 and 12.2.2. It stores all translatable attributes — principally the name and description — associated with Trade Area Groups, which are logical groupings of trade areas used in retail site management and market analysis. In a multilingual EBS deployment, the base record for each trade area group resides in the corresponding non-translated table (RRS_TRADE_AREA_GROUPS_B or its equivalent), while this _TL table holds one row per group per installed language.
From a dimensional modeling perspective, the metadata heuristically classifies this object as satellite-leaning. In Data Vault terms, GROUP_ID functions as the hub or parent identifier, while the descriptive, language-specific attributes (NAME, DESCRIPTION, SOURCE_LANG) are satellite attributes dependent on that hub combined with the LANGUAGE discriminator. This classification is a modeling suggestion derived from the foreign key structure rather than a documented Oracle designation.
Key Information Stored
The table contains ten documented columns. The most significant are:
- GROUP_ID — Surrogate identifier for the Trade Area Group; the primary grouping key that links translated rows back to the base group entity.
- LANGUAGE — The NLS language code identifying which installed language this translation row represents (for example, US for American English).
- NAME — The translatable display name of the trade area group, presented to users in the corresponding language.
- DESCRIPTION — The translatable long description of the group, used in maintenance forms and reports.
- SOURCE_LANG — Indicates the source language from which the translation was derived, supporting the standard EBS translation workflow.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard EBS "Who" audit columns capturing row creation and last modification metadata.
The surrogate primary key is defined by RRS_TRADE_AREA_GROUPS_TL_PK on the composite (GROUP_ID, LANGUAGE). Two unique indexes act as business-key candidates: RRS_TRADE_AREA_GROUPS_TL_U1 on (GROUP_ID, LANGUAGE), enforcing one translation per group per language, and RRS_TRADE_AREA_GROUPS_TL_U2 on (NAME, LANGUAGE), which suggests that the translated name must be unique within a given language.
Common Use Cases and Queries
Typical use cases include multilingual reporting on trade area groupings, validation of translation completeness, and joins to the base table for user-facing queries. A common pattern retrieves the localized name for a specific language:
SELECT group_id, name, description
FROM rrs.rrs_trade_area_groups_tl
WHERE language = USERENV('LANG')
AND group_id = :p_group_id;
Detecting groups that lack a translation for an installed language is another frequent requirement:
SELECT b.group_id FROM rrs.rrs_trade_area_groups_b b WHERE NOT EXISTS ( SELECT 1 FROM rrs.rrs_trade_area_groups_tl tl WHERE tl.group_id = b.group_id AND tl.language = 'US');
Reporting queries frequently join the _TL table to the base table on GROUP_ID to combine untranslated attributes with localized text.
Related Objects
The most significant dependent and related objects are:
- RRS_TRADE_AREA_GROUPS_TL_PK — The composite primary key (GROUP_ID, LANGUAGE) governing uniqueness of translations.
- RRS_TRADE_AREA_GROUPS_TL_U1 and RRS_TRADE_AREA_GROUPS_TL_U2 — Unique indexes enforcing one translation per group/language and unique names per language.
- RRS_TRADE_AREA_GROUPS_TL.GROUP_ID — The foreign key column joining to the parent Trade Area Groups base entity.
- RRS_TRADE_AREA_GROUPS_B (base table) — Holds language-independent attributes for each trade area group and is joined on GROUP_ID.
- FND_LANGUAGES — Standard EBS reference validating the LANGUAGE and SOURCE_LANG values.
- FND_USER — Provided indirectly through CREATED_BY and LAST_UPDATED_BY audit columns.
Together these objects support the maintenance and multilingual presentation of Trade Area Group reference data within the RRS Site Management module.
-
Table: RRS_TRADE_AREA_GROUPS_TL
12.1.1
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_TRADE_AREA_GROUPS_TL, object_name:RRS_TRADE_AREA_GROUPS_TL, status:VALID, product: RRS - Site Management , description: This table stores all the translatable information related to Trade Area Groups. , implementation_dba_data: RRS.RRS_TRADE_AREA_GROUPS_TL ,
-
Table: RRS_TRADE_AREA_GROUPS_TL
12.2.2
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_TRADE_AREA_GROUPS_TL, object_name:RRS_TRADE_AREA_GROUPS_TL, status:VALID, product: RRS - Site Management , description: This table stores all the translatable information related to Trade Area Groups. , implementation_dba_data: RRS.RRS_TRADE_AREA_GROUPS_TL ,
-
APPS.RRS_TRADE_AREA_GROUPS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.RRS_TRADE_AREA_GROUPS_PKG
12.1.1
-
PACKAGE BODY: APPS.RRS_TRADE_AREA_GROUPS_PKG
12.2.2
-
APPS.RRS_TRADE_AREA_GROUPS_PKG SQL Statements
12.1.1
-
VIEW: APPS.RRS_TRADE_AREA_GROUPS_VL
12.2.2
-
SYNONYM: APPS.RRS_TRADE_AREA_GROUPS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RRS_TRADE_AREA_GROUPS_TL, status:VALID,
-
VIEW: RRS.RRS_TRADE_AREA_GROUPS_TL#
12.2.2
owner:RRS, object_type:VIEW, object_name:RRS_TRADE_AREA_GROUPS_TL#, status:VALID,
-
VIEW: RRS.RRS_TRADE_AREA_GROUPS_TL#
12.2.2
-
SYNONYM: APPS.RRS_TRADE_AREA_GROUPS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RRS_TRADE_AREA_GROUPS_TL, status:VALID,
-
VIEW: APPS.RRS_TRADE_AREA_GROUPS_VL
12.1.1
-
TABLE: RRS.RRS_TRADE_AREA_GROUPS_TL
12.1.1
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_TRADE_AREA_GROUPS_TL, object_name:RRS_TRADE_AREA_GROUPS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
TABLE: RRS.RRS_TRADE_AREA_GROUPS_TL
12.2.2
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_TRADE_AREA_GROUPS_TL, object_name:RRS_TRADE_AREA_GROUPS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
Table: RRS_TRADE_AREA_GROUPS_B
12.2.2
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_TRADE_AREA_GROUPS_B, object_name:RRS_TRADE_AREA_GROUPS_B, status:VALID, product: RRS - Site Management , description: This table stores the information related to Trade Area Groups , implementation_dba_data: RRS.RRS_TRADE_AREA_GROUPS_B ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.RRS_TRADE_AREA_GROUPS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_TRADE_AREA_GROUPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.RRS_TRADE_AREA_GROUPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_TRADE_AREA_GROUPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_SITE_INFO, status:VALID,
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_SITE_INFO, status:VALID,
-
VIEW: APPS.RRS_TRADE_AREA_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, object_name:RRS_TRADE_AREA_GROUPS_VL, status:VALID,
-
VIEW: APPS.RRS_TRADE_AREA_GROUPS_VL
12.2.2
owner:APPS, object_type:VIEW, object_name:RRS_TRADE_AREA_GROUPS_VL, status:VALID,
-
eTRM - RRS Tables and Views
12.1.1
description: This table stores all the translatable information related to Trade Area Groups. ,
-
eTRM - RRS Tables and Views
12.2.2
description: This table stores all the translatable information related to Trade Area Groups. ,
-
APPS.RRS_SITE_INFO dependencies on RRS_TRADE_AREA_GROUPS_TL
12.2.2
-
APPS.RRS_TRADE_AREA_GROUPS_PKG dependencies on RRS_TRADE_AREA_GROUPS_TL
12.1.1
-
APPS.RRS_SITE_INFO dependencies on RRS_TRADE_AREA_GROUPS_TL
12.1.1
-
APPS.RRS_TRADE_AREA_GROUPS_PKG dependencies on RRS_TRADE_AREA_GROUPS_TL
12.2.2
-
Foreign Keys
12.1.1
-
APPS.RRS_TRADE_AREA_GROUPS_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.RRS_TRADE_AREA_GROUPS_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.RRS_TRADE_AREA_GROUPS_PKG dependencies on RRS_TRADE_AREA_GROUPS_B
12.2.2
-
APPS.RRS_TRADE_AREA_GROUPS_PKG dependencies on RRS_TRADE_AREA_GROUPS_B
12.1.1
-
eTRM - RRS Tables and Views
12.1.1
description: This table stores all the translatable information related to Trade Area Groups. ,
-
eTRM - RRS Tables and Views
12.2.2
description: This table stores all the translatable information related to Trade Area Groups. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1