Search Results gcs_elim_rules_tl
Overview
The GCS_ELIM_RULES_TL table is a core data object within Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2, specifically for the Financial Consolidation Hub (GCS) module. As a translation table (indicated by the "_TL" suffix), its primary role is to store multilingual descriptions and names for elimination rule definitions. It operates in conjunction with its base table, GCS_ELIM_RULES_B, which holds the core transactional data. This structure enables the application to present rule information in a user's preferred language, supporting global deployments. The table is integral to the consolidation process, where elimination rules are critical for removing intercompany transactions and balances during financial statement preparation.
Key Information Stored
The table stores language-specific translations for elimination rule attributes. While the exact column list is not fully detailed in the provided metadata, the structure of Oracle EBS translation tables follows a consistent pattern. The primary key, comprised of RULE_ID and LANGUAGE, uniquely identifies each translated record. Essential columns typically include:
- RULE_ID: Foreign key linking the translation to the corresponding rule in the GCS_ELIM_RULES_B table.
- LANGUAGE: The code (e.g., 'US', 'FR', 'DE') representing the language of the translated text, validated against the FND_LANGUAGES table.
- SOURCE_LANG: Indicates the original language in which the rule was created, also validated against FND_LANGUAGES.
- RULE_NAME: The translated name of the elimination rule.
- DESCRIPTION: The translated descriptive text for the elimination rule.
- Standard WHO columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY) for auditing.
Common Use Cases and Queries
This table is primarily accessed by the application's user interface (UI) layer to display rule information in the correct locale. Common operational and reporting scenarios include generating translated rule listings for reports or data extracts and validating translation coverage during implementation. A typical query to retrieve all French translations for active elimination rules would join the base and translation tables, filtering by language.
SELECT b.RULE_ID,
tl.RULE_NAME,
tl.DESCRIPTION,
tl.LANGUAGE
FROM GCS_ELIM_RULES_B b,
GCS_ELIM_RULES_TL tl
WHERE b.RULE_ID = tl.RULE_ID
AND tl.LANGUAGE = 'F'
AND b.ENABLED_FLAG = 'Y';
For data migration or upgrade scripts, direct INSERT or UPDATE operations on this table may be performed to populate or correct translated text, ensuring referential integrity with the base table and FND_LANGUAGES.
Related Objects
The GCS_ELIM_RULES_TL table has defined foreign key relationships with several core EBS objects, as documented in the metadata.
- GCS_ELIM_RULES_B: The primary base table. The relationship is defined on the column GCS_ELIM_RULES_TL.RULE_ID = GCS_ELIM_RULES_B.RULE_ID. All translations must reference a valid record in this table.
- FND_LANGUAGES (for LANGUAGE column): Ensures that the value in the GCS_ELIM_RULES_TL.LANGUAGE column is a valid, installed language within the EBS instance.
- FND_LANGUAGES (for SOURCE_LANG column): Similarly validates that the source language code is a valid entry in FND_LANGUAGES.
This table is also likely referenced by various GCS application programming interfaces (APIs) and user interface forms that manage elimination rule setup. Views within the GCS schema may join to this table to present a fully translated record.
-
Table: GCS_ELIM_RULES_TL
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_ELIM_RULES_TL, object_name:GCS_ELIM_RULES_TL, status:VALID, product: GCS - Financial Consolidation Hub , description: Translation table for GCS_ELIM_RULES_B , implementation_dba_data: GCS.GCS_ELIM_RULES_TL ,
-
View: GCS_ELIM_RULES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_ELIM_RULES_VL, object_name:GCS_ELIM_RULES_VL, status:VALID, product: GCS - Financial Consolidation Hub , description: Elimination rules information , implementation_dba_data: APPS.GCS_ELIM_RULES_VL ,
-
Table: GCS_ELIM_RULES_B
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_ELIM_RULES_B, object_name:GCS_ELIM_RULES_B, status:VALID, product: GCS - Financial Consolidation Hub , description: GCS consolidation rules , implementation_dba_data: GCS.GCS_ELIM_RULES_B ,