Search Results cug_sr_task_type_dets_tl
Overview
The CUG_SR_TASK_TYPE_DETS_TL table is a translation table within the Oracle E-Business Suite Citizen Interaction Center (CUG) module. Its primary role is to store multilingual data for the base transactional table, CUG_SR_TASK_TYPE_DETS_B. This design is a standard Oracle EBS architecture pattern, enabling the application to support multiple languages by separating language-specific descriptive text (held in *_TL tables) from the core transactional data (held in *_B tables). The table is valid and operational in both the 12.1.1 and 12.2.2 versions of the application.
Key Information Stored
The table stores translated descriptions and names for service request task type details. Its structure is defined by a composite primary key that uniquely identifies each translated record. The most critical columns are:
- SR_TASK_TYPE_DET_ID: The foreign key that links the translation row to its corresponding master record in the CUG_SR_TASK_TYPE_DETS_B table. This is the identifier the user searched for.
- LANGUAGE: The language code (e.g., 'US' for American English) for the translated text. Combined with SR_TASK_TYPE_DET_ID, it forms the table's primary key.
- NAME and DESCRIPTION: These columns typically hold the user-facing, translated text for the task type detail's name and a longer descriptive explanation, respectively. While not explicitly listed in the provided metadata, their presence is implied by the table's purpose as a translation table and is consistent with the EBS data model.
- Standard Oracle columns like CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN are also present for auditing.
Common Use Cases and Queries
This table is primarily accessed to retrieve user interface labels and descriptions in the session language of the logged-in user. A common use case is generating reports or building service request process screens that display task type information in the appropriate locale. A typical query involves joining the translation table to its base table and filtering by the session language.
Sample SQL Pattern:
SELECT b.technical_column1,
tl.name,
tl.description
FROM cug_sr_task_type_dets_b b,
cug_sr_task_type_dets_tl tl
WHERE b.sr_task_type_det_id = tl.sr_task_type_det_id
AND tl.language = USERENV('LANG')
AND b.enabled_flag = 'Y';
Developers and DBAs may also query this table directly during data migrations or to verify translated content for specific task type detail IDs across multiple installed languages.
Related Objects
The table has a direct and singular relationship with its base table, as documented in the provided metadata.
- Primary Key: CUG_SR_TASK_TYPE_DETS_TL_PK on columns (SR_TASK_TYPE_DET_ID, LANGUAGE).
- Foreign Key: The table contains a foreign key constraint where its SR_TASK_TYPE_DET_ID column references the SR_TASK_TYPE_DET_ID column in the CUG_SR_TASK_TYPE_DETS_B table. This enforces referential integrity, ensuring every translation record corresponds to a valid master record.
This table is typically accessed via the standard Oracle EBS view layer (e.g., *_VL views) which automatically handles the language join, rather than through direct SQL joins in application code.
-
Table: CUG_SR_TASK_TYPE_DETS_TL
12.1.1
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_TL, object_name:CUG_SR_TASK_TYPE_DETS_TL, status:VALID, product: CUG - Citizen Interaction Center , description: This Table holds the translated values for the CUG_SR_TASK_TYPE_DETS_B Table , implementation_dba_data: CUG.CUG_SR_TASK_TYPE_DETS_TL ,
-
Table: CUG_SR_TASK_TYPE_DETS_TL
12.2.2
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_TL, object_name:CUG_SR_TASK_TYPE_DETS_TL, status:VALID, product: CUG - Citizen Interaction Center , description: This Table holds the translated values for the CUG_SR_TASK_TYPE_DETS_B Table , implementation_dba_data: CUG.CUG_SR_TASK_TYPE_DETS_TL ,
-
APPS.CUG_SR_TASK_TYPE_DETS_PKG dependencies on CUG_SR_TASK_TYPE_DETS_TL
12.2.2
-
APPS.CUG_SR_TASK_TYPE_DETS_PKG dependencies on CUG_SR_TASK_TYPE_DETS_TL
12.1.1
-
APPS.CUG_SR_TASK_TYPE_DETS_PKG SQL Statements
12.1.1
-
APPS.CUG_SR_TASK_TYPE_DETS_PKG SQL Statements
12.2.2
-
APPS.CUG_SR_TASK_TYPE_DETS_PKG dependencies on FND_LANGUAGES
12.2.2
-
VIEW: CUG.CUG_SR_TASK_TYPE_DETS_TL#
12.2.2
owner:CUG, object_type:VIEW, object_name:CUG_SR_TASK_TYPE_DETS_TL#, status:VALID,
-
SYNONYM: APPS.CUG_SR_TASK_TYPE_DETS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CUG_SR_TASK_TYPE_DETS_TL, status:VALID,
-
APPS.CUG_SR_TASK_TYPE_DETS_PKG dependencies on FND_LANGUAGES
12.1.1
-
SYNONYM: APPS.CUG_SR_TASK_TYPE_DETS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CUG_SR_TASK_TYPE_DETS_TL, status:VALID,
-
VIEW: CUG.CUG_SR_TASK_TYPE_DETS_TL#
12.2.2
-
VIEW: APPS.CUG_SR_TASK_TYPE_DETS_VL
12.2.2
-
View: CUG_SR_TASK_TYPE_DETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_VL, object_name:CUG_SR_TASK_TYPE_DETS_VL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the multi-lingual view used for the configuration of the Service Reqiest Type- Task Type Attribute capture form. Joins the tables CUG_SR_TASK_TYPE_DETS_B and CUG_SR_TASK_TYPE_DETS_TL. , implementation_dba_data: APPS.CUG_SR_TASK_TYPE_DETS_VL ,
-
PACKAGE BODY: APPS.CUG_SR_TASK_TYPE_DETS_PKG
12.2.2
-
View: CUG_SR_TASK_TYPE_DETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_VL, object_name:CUG_SR_TASK_TYPE_DETS_VL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the multi-lingual view used for the configuration of the Service Reqiest Type- Task Type Attribute capture form. Joins the tables CUG_SR_TASK_TYPE_DETS_B and CUG_SR_TASK_TYPE_DETS_TL. , implementation_dba_data: APPS.CUG_SR_TASK_TYPE_DETS_VL ,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.CUG_SR_TASK_TYPE_DETS_VL
12.1.1
-
TABLE: CUG.CUG_SR_TASK_TYPE_DETS_TL
12.1.1
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_TL, object_name:CUG_SR_TASK_TYPE_DETS_TL, status:VALID,
-
PACKAGE BODY: APPS.CUG_SR_TASK_TYPE_DETS_PKG
12.1.1
-
APPS.CUG_SR_TASK_TYPE_DETS_PKG dependencies on CUG_SR_TASK_TYPE_DETS_B
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.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: CUG.CUG_SR_TASK_TYPE_DETS_TL
12.2.2
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_TL, object_name:CUG_SR_TASK_TYPE_DETS_TL, status:VALID,
-
APPS.CUG_SR_TASK_TYPE_DETS_PKG dependencies on CUG_SR_TASK_TYPE_DETS_B
12.2.2
-
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
-
Table: CUG_SR_TASK_TYPE_DETS_B
12.1.1
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_B, object_name:CUG_SR_TASK_TYPE_DETS_B, status:VALID, product: CUG - Citizen Interaction Center , description: This table is used to hold additional details about the Task Type for a Service Request Type , implementation_dba_data: CUG.CUG_SR_TASK_TYPE_DETS_B ,
-
Table: CUG_SR_TASK_TYPE_DETS_B
12.2.2
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_B, object_name:CUG_SR_TASK_TYPE_DETS_B, status:VALID, product: CUG - Citizen Interaction Center , description: This table is used to hold additional details about the Task Type for a Service Request Type , implementation_dba_data: CUG.CUG_SR_TASK_TYPE_DETS_B ,
-
PACKAGE BODY: APPS.CUG_SR_TASK_TYPE_DETS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_SR_TASK_TYPE_DETS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CUG_SR_TASK_TYPE_DETS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_SR_TASK_TYPE_DETS_PKG, status:VALID,
-
eTRM - CUG Tables and Views
12.1.1
description: This is the Translation Table for the CUG_TSK_TYP_ATTR_MAPS_B Table ,
-
eTRM - CUG Tables and Views
12.2.2
description: This is the Translation Table for the CUG_TSK_TYP_ATTR_MAPS_B Table ,
-
VIEW: APPS.CUG_SR_TASK_TYPE_DETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_VL, object_name:CUG_SR_TASK_TYPE_DETS_VL, status:VALID,
-
VIEW: APPS.CUG_SR_TASK_TYPE_DETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_SR_TASK_TYPE_DETS_VL, object_name:CUG_SR_TASK_TYPE_DETS_VL, status:VALID,
-
eTRM - CUG Tables and Views
12.2.2
description: This is the Translation Table for the CUG_TSK_TYP_ATTR_MAPS_B Table ,
-
eTRM - CUG Tables and Views
12.1.1
description: This is the Translation Table for the CUG_TSK_TYP_ATTR_MAPS_B Table ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1