Search Results fnd_svc_comp_params_tl
Overview
The FND_SVC_COMP_PARAMS_TL table is a core Application Object Library (FND) table within the Oracle E-Business Suite (EBS) architecture. It functions as the Multi-Lingual Support (MLS) or translated data table for its base table, FND_SVC_COMP_PARAMS_B. This design pattern is standard in EBS to enable the storage of language-specific, translatable text for a given entity. The table's primary role is to hold the translated names, descriptions, and other displayable attributes for service component parameters, supporting the internationalization and localization of the application. It is a critical component for ensuring that service-oriented features within EBS present user-facing text in the correct language, as defined by the user's session settings.
Key Information Stored
The table stores the language-specific versions of translatable columns from the associated base table. While the full column list is not detailed in the provided metadata, the structure of such TL tables is consistent. The key columns, as defined by the primary and foreign keys, are PARAMETER_ID and LANGUAGE. The PARAMETER_ID is a foreign key that uniquely links each row to a specific parameter record in the FND_SVC_COMP_PARAMS_B base table. The LANGUAGE column holds the ISO language code (e.g., 'US' for American English, 'KO' for Korean) identifying the translation. Typically, the table would also contain columns such as PARAMETER_NAME and DESCRIPTION (or similar) to store the translated text, along with standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) and a SOURCE_LANG column to denote the original language of the record.
Common Use Cases and Queries
The primary use case is retrieving parameter information in a user's preferred language for display within service component administration or monitoring interfaces. It is also queried during application patching or upgrade processes to manage translations. A common reporting query involves joining the base and translated tables to get a comprehensive, language-specific view of all parameters. For example, to retrieve Spanish ('ES') translations for all parameters, one might use:
- SELECT b.PARAMETER_CODE, tl.PARAMETER_NAME, tl.DESCRIPTION
- FROM FND_SVC_COMP_PARAMS_B b,
- FND_SVC_COMP_PARAMS_TL tl
- WHERE b.PARAMETER_ID = tl.PARAMETER_ID
- AND tl.LANGUAGE = 'ES';
Direct data manipulation (DML) on this table is strongly discouraged; updates should be performed through the appropriate Oracle-provided administrative APIs to maintain data integrity.
Related Objects
The table has a direct and singular dependency on its base table, as documented in the provided metadata. The relationship is enforced by a foreign key constraint.
- FND_SVC_COMP_PARAMS_B: This is the base table that contains the non-translatable, operational data for service component parameters. The TL table references it via the foreign key column FND_SVC_COMP_PARAMS_TL.PARAMETER_ID, which joins to the primary key of the base table. All records in the TL table must have a corresponding parent record in this base table.
Other related objects would include the service component definitions themselves (likely in tables like FND_SVC_COMPONENTS), but these relationships are not explicitly documented in the provided metadata.
-
Table: FND_SVC_COMP_PARAMS_TL
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_TL, object_name:FND_SVC_COMP_PARAMS_TL, status:VALID, product: FND - Application Object Library , description: MLS table for the FND_SVC_COMP_PARAMS_B table , implementation_dba_data: APPLSYS.FND_SVC_COMP_PARAMS_TL ,
-
Table: FND_SVC_COMP_PARAMS_TL
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_TL, object_name:FND_SVC_COMP_PARAMS_TL, status:VALID, product: FND - Application Object Library , description: MLS table for the FND_SVC_COMP_PARAMS_B table , implementation_dba_data: APPLSYS.FND_SVC_COMP_PARAMS_TL ,
-
APPS.FND_SVC_COMP_PARAMS_PKG dependencies on FND_SVC_COMP_PARAMS_TL
12.1.1
-
APPS.FND_SVC_COMP_PARAMS_PKG dependencies on FND_SVC_COMP_PARAMS_TL
12.2.2
-
APPS.FND_SVC_COMP_PARAMS_PKG SQL Statements
12.1.1
-
APPS.FND_SVC_COMP_PARAMS_PKG SQL Statements
12.2.2
-
APPS.FND_SVC_COMP_PARAMS_PKG dependencies on WF_LANGUAGES
12.2.2
-
VIEW: APPLSYS.FND_SVC_COMP_PARAMS_TL#
12.2.2
owner:APPLSYS, object_type:VIEW, object_name:FND_SVC_COMP_PARAMS_TL#, status:VALID,
-
APPS.FND_SVC_COMP_PARAMS_PKG dependencies on WF_LANGUAGES
12.1.1
-
PACKAGE BODY: APPS.FND_SVC_COMP_PARAMS_PKG
12.1.1
-
SYNONYM: APPS.FND_SVC_COMP_PARAMS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_SVC_COMP_PARAMS_TL, status:VALID,
-
SYNONYM: APPS.FND_SVC_COMP_PARAMS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_SVC_COMP_PARAMS_TL, status:VALID,
-
TRIGGER: APPS.FND_SVC_COMP_PARAMS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:FND_SVC_COMP_PARAMS_TL+, status:VALID,
-
VIEW: APPS.FND_SVC_COMP_PARAMS_VL
12.2.2
-
VIEW: APPLSYS.FND_SVC_COMP_PARAMS_TL#
12.2.2
-
PACKAGE BODY: APPS.FND_SVC_COMP_PARAMS_PKG
12.2.2
-
TABLE: APPLSYS.FND_SVC_COMP_PARAMS_TL
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_TL, object_name:FND_SVC_COMP_PARAMS_TL, status:VALID,
-
VIEW: APPS.FND_SVC_COMP_PARAMS_VL
12.1.1
-
TRIGGER: APPS.FND_SVC_COMP_PARAMS_TL+
12.2.2
-
TABLE: APPLSYS.FND_SVC_COMP_PARAMS_TL
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_TL, object_name:FND_SVC_COMP_PARAMS_TL, status:VALID,
-
FUNCTION: APPS.FND_SVC_COMP_PARAMS_TL=
12.2.2
-
Table: FND_SVC_COMP_PARAMS_B
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_B, object_name:FND_SVC_COMP_PARAMS_B, status:VALID, product: FND - Application Object Library , description: Service Component Parameter Definitions , implementation_dba_data: APPLSYS.FND_SVC_COMP_PARAMS_B ,
-
Table: FND_SVC_COMP_PARAMS_B
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_SVC_COMP_PARAMS_B, object_name:FND_SVC_COMP_PARAMS_B, status:VALID, product: FND - Application Object Library , description: Service Component Parameter Definitions , implementation_dba_data: APPLSYS.FND_SVC_COMP_PARAMS_B ,
-
View: FND_SVC_COMP_PARAMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_PARAMS_VL, object_name:FND_SVC_COMP_PARAMS_VL, status:VALID, product: FND - Application Object Library , description: FND_SVC_COMP_PARAMS_VL , implementation_dba_data: APPS.FND_SVC_COMP_PARAMS_VL ,
-
View: FND_SVC_COMP_PARAMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_PARAMS_VL, object_name:FND_SVC_COMP_PARAMS_VL, status:VALID, product: FND - Application Object Library , description: FND_SVC_COMP_PARAMS_VL , implementation_dba_data: APPS.FND_SVC_COMP_PARAMS_VL ,
-
FUNCTION: APPS.FND_SVC_COMP_PARAMS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:FND_SVC_COMP_PARAMS_TL=, status:VALID,
-
PACKAGE BODY: APPS.FND_SVC_COMP_PARAMS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:FND_SVC_COMP_PARAMS_PKG, status:VALID,
-
PACKAGE BODY: APPS.FND_SVC_COMP_PARAMS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FND_SVC_COMP_PARAMS_PKG, status:VALID,
-
APPS.FND_SVC_COMP_PARAMS_PKG dependencies on FND_SVC_COMP_PARAMS_B
12.1.1
-
APPS.FND_SVC_COMP_PARAMS_PKG dependencies on FND_SVC_COMP_PARAMS_B
12.2.2
-
VIEW: APPS.FND_SVC_COMP_PARAMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_PARAMS_VL, object_name:FND_SVC_COMP_PARAMS_VL, status:VALID,
-
VIEW: APPS.FND_SVC_COMP_PARAMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_SVC_COMP_PARAMS_VL, object_name:FND_SVC_COMP_PARAMS_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,