Search Results curr_treatment_id
Overview
The GCS.GCS_CURR_TREATMENTS_TL table is a Translation (TL) table within the Oracle E-Business Suite (EBS) Global Consolidation System (GCS) module. Its primary role is to store translated, language-specific text for currency treatment definitions. This enables the application to display descriptive names and descriptions for currency treatments in multiple languages, supporting global deployments. The table is a critical component for maintaining multilingual data integrity in consolidation processes, where currency treatment rules govern how foreign currency transactions and balances are handled during financial consolidation. It is a seed data table, residing in the APPS_TS_SEED tablespace, indicating its content is largely static and delivered by Oracle.
Key Information Stored
The table's structure centers on a composite primary key and user-facing translatable attributes. The mandatory CURR_TREATMENT_ID column links each row to its base definition in a corresponding entity table (e.g., GCS_CURR_TREATMENTS_B). The LANGUAGE column specifies the language code (e.g., 'US', 'D') for the translation, while SOURCE_LANG records the original language of the data. The core translatable content is held in CURR_TREATMENT_NAME (a 50-character name) and DESCRIPTION (a 240-character explanatory field). Standard Oracle Applications "Who" columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) track row history for auditing and compliance purposes.
Common Use Cases and Queries
This table is primarily accessed by the GCS application to render user interfaces and reports in a user's preferred language. Common operational and reporting queries involve joining this table with its base table to retrieve a complete, language-specific treatment definition. A typical pattern is to filter by CURR_TREATMENT_ID and LANGUAGE to fetch a specific translation. For reporting, a query might join to the FND_LANGUAGES table via the LANGUAGE column to get the language name. The standard query provided in the metadata is the foundational SELECT statement for all columns. A more practical, joined query for a report might be:
- SELECT gctl.CURR_TREATMENT_NAME, gctl.DESCRIPTION, fl.LANGUAGE_NAME FROM GCS.GCS_CURR_TREATMENTS_TL gctl, FND_LANGUAGES fl WHERE gctl.LANGUAGE = fl.LANGUAGE_CODE AND gctl.CURR_TREATMENT_ID = :p_treatment_id;
Related Objects
The table has defined relationships with other EBS schema objects, primarily through foreign key constraints and its role as a translation layer. Its composite primary key, GCS_CURR_TREATMENTS_TL_PK (CURR_TREATMENT_ID, LANGUAGE), is likely referenced by the base table GCS_CURR_TREATMENTS_B. The table has two documented foreign key relationships to the FND_LANGUAGES table, validating entries in its LANGUAGE and SOURCE_LANG columns against standard application language codes. The dependency information confirms it is referenced by the APPS synonym GCS_CURR_TREATMENTS_TL, which is the standard access point for all application code. As a TL table, its most critical relationship is with its corresponding base table, which holds the non-translatable attributes for each CURR_TREATMENT_ID.
-
APPS.GCS_CURR_TREATMENTS_PKG SQL Statements
12.1.1
-
APPS.GCS_CURR_TREATMENTS_PKG dependencies on GCS_CURR_TREATMENTS_B
12.1.1
-
TABLE: GCS.GCS_CURR_TREATMENTS_TL
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_CURR_TREATMENTS_TL, object_name:GCS_CURR_TREATMENTS_TL, status:VALID,
-
PACKAGE BODY: APPS.GCS_CURR_TREATMENTS_PKG
12.1.1
-
PACKAGE: APPS.GCS_CURR_TREATMENTS_PKG
12.1.1
-
APPS.GCS_TRANSLATION_PKG dependencies on GCS_CURR_TREATMENTS_B
12.1.1
-
TABLE: GCS.GCS_CURR_TREATMENTS_B
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_CURR_TREATMENTS_B, object_name:GCS_CURR_TREATMENTS_B, status:VALID,
-
View: GCS_CURR_TREATMENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_CURR_TREATMENTS_VL, object_name:GCS_CURR_TREATMENTS_VL, status:VALID, product: GCS - Financial Consolidation Hub , description: Currency treatments information , implementation_dba_data: APPS.GCS_CURR_TREATMENTS_VL ,
-
VIEW: APPS.GCS_CURR_TREATMENTS_VL
12.1.1
-
View: GCS_CURR_TREATMENTS_VL
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Currency treatments information , implementation_dba_data: Not implemented in this database ,
-
APPS.GCS_HIERARCHIES_PKG SQL Statements
12.1.1
-
APPS.GCS_CURR_TREATMENTS_PKG dependencies on GCS_CURR_TREATMENTS_TL
12.1.1
-
Table: GCS_CURR_TREATMENTS_TL
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_CURR_TREATMENTS_TL, object_name:GCS_CURR_TREATMENTS_TL, status:VALID, product: GCS - Financial Consolidation Hub , description: Translation table for GCS Currency treatments , implementation_dba_data: GCS.GCS_CURR_TREATMENTS_TL ,
-
TABLE: GCS.GCS_CONS_RELATIONSHIPS
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_CONS_RELATIONSHIPS, object_name:GCS_CONS_RELATIONSHIPS, status:VALID,
-
Table: GCS_CURR_TREATMENTS_B
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Consolidation currency treatments , implementation_dba_data: Not implemented in this database ,
-
Table: GCS_CURR_TREATMENTS_B
12.1.1
owner:GCS, object_type:TABLE, fnd_design_data:GCS.GCS_CURR_TREATMENTS_B, object_name:GCS_CURR_TREATMENTS_B, status:VALID, product: GCS - Financial Consolidation Hub , description: Consolidation currency treatments , implementation_dba_data: GCS.GCS_CURR_TREATMENTS_B ,
-
Table: GCS_CURR_TREATMENTS_TL
12.2.2
product: GCS - Financial Consolidation Hub (Obsolete) , description: Translation table for GCS Currency treatments , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GCS_CURR_TREATMENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GCS.GCS_CURR_TREATMENTS_VL, object_name:GCS_CURR_TREATMENTS_VL, status:VALID,
-
PACKAGE BODY: APPS.GCS_HIERARCHIES_PKG
12.1.1
-
APPS.GCS_HIERARCHIES_PKG dependencies on GCS_CONS_RELATIONSHIPS
12.1.1
-
APPS.GCS_HIERARCHIES_PKG dependencies on FND_GLOBAL
12.1.1
-
APPS.GCS_TRANSLATION_PKG SQL Statements
12.1.1
-
APPS.GCS_TRANSLATION_PKG dependencies on GCS_UTILITY_PKG
12.1.1
-
eTRM - GCS Tables and Views
12.1.1
description: XML generated for XML Publisher reporting ,
-
eTRM - GCS Tables and Views
12.1.1
description: XML generated for XML Publisher reporting ,
-
PACKAGE BODY: APPS.GCS_TRANSLATION_PKG
12.1.1