Search Results cug_tsk_typ_attr_deps_tl
Overview
The CUG_TSK_TYP_ATTR_DEPS_TL table is a core translation (TL) table within the Oracle E-Business Suite Citizen Interaction Center (CUG) module. Its primary function is to store translated, language-specific descriptions for task type attribute dependency records. It operates as a supporting object to its base table, CUG_TSK_TYP_ATTR_DEPS_B, enabling the multi-language capability of the application. In the context of Oracle EBS releases 12.1.1 and 12.2.2, this table is essential for global deployments where user interfaces and descriptive data must be presented in a user's native language, as defined by the application's NLS (National Language Support) settings.
Key Information Stored
The table stores the translated textual attributes for task type attribute dependencies. Its structure is typical of EBS translation tables, combining a key identifier with a language code. The primary key is a composite of TSK_TYP_ATTR_DEP_ID and LANGUAGE. The TSK_TYP_ATTR_DEP_ID column is a foreign key that links each translation row directly to a unique record in the base table CUG_TSK_TYP_ATTR_DEPS_B. The LANGUAGE column holds the standard Oracle language code (e.g., 'US' for American English, 'KO' for Korean). The most significant data column, typically named DESCRIPTION or a similar attribute (implied by the table's purpose), holds the translated text for the dependency rule, which is displayed in the application's user interface based on the user's session language.
Common Use Cases and Queries
This table is primarily accessed by the application's internal logic to render locale-specific content. Common technical and reporting use cases include auditing translations and troubleshooting user interface display issues. A typical query retrieves the translated description for a specific dependency rule across all installed languages, which is useful for verifying translation completeness. For example:
SELECT TSK_TYP_ATTR_DEP_ID, LANGUAGE, DESCRIPTION FROM CUG.CUG_TSK_TYP_ATTR_DEPS_TL WHERE TSK_TYP_ATTR_DEP_ID = :1 ORDER BY LANGUAGE;
Another common pattern is joining the translation table with its base table to produce a comprehensive, language-specific report on task type attribute dependencies:
SELECT B.*, TL.DESCRIPTION, TL.LANGUAGE FROM CUG.CUG_TSK_TYP_ATTR_DEPS_B B, CUG.CUG_TSK_TYP_ATTR_DEPS_TL TL WHERE B.TSK_TYP_ATTR_DEP_ID = TL.TSK_TYP_ATTR_DEP_ID AND TL.LANGUAGE = :user_lang;
Direct data manipulation (DML) on this table is strongly discouraged and should be performed exclusively through the standard Oracle EBS application forms or APIs to maintain data integrity.
Related Objects
The table has a direct and singular dependency relationship with its corresponding base table. The documented foreign key relationship is fundamental to its operation:
- Base Table (CUG_TSK_TYP_ATTR_DEPS_B): This is the primary related object. The CUG_TSK_TYP_ATTR_DEPS_TL table references it via the foreign key column CUG_TSK_TYP_ATTR_DEPS_TL.TSK_TYP_ATTR_DEP_ID pointing to CUG_TSK_TYP_ATTR_DEPS_B. Every record in the translation table must have a corresponding parent record in this base table.
-
Table: CUG_TSK_TYP_ATTR_DEPS_TL
12.1.1
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_TL, object_name:CUG_TSK_TYP_ATTR_DEPS_TL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the Translation table for CUG_TSK_TYP_ATTR_DEPS_B Table , implementation_dba_data: CUG.CUG_TSK_TYP_ATTR_DEPS_TL ,
-
Table: CUG_TSK_TYP_ATTR_DEPS_TL
12.2.2
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_TL, object_name:CUG_TSK_TYP_ATTR_DEPS_TL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the Translation table for CUG_TSK_TYP_ATTR_DEPS_B Table , implementation_dba_data: CUG.CUG_TSK_TYP_ATTR_DEPS_TL ,
-
APPS.CUG_TSK_TYP_ATTR_DEPS_PKG dependencies on CUG_TSK_TYP_ATTR_DEPS_TL
12.1.1
-
APPS.CUG_TSK_TYP_ATTR_DEPS_PKG dependencies on CUG_TSK_TYP_ATTR_DEPS_TL
12.2.2
-
APPS.CUG_TSK_TYP_ATTR_DEPS_PKG SQL Statements
12.1.1
-
APPS.CUG_TSK_TYP_ATTR_DEPS_PKG SQL Statements
12.2.2
-
APPS.CUG_TSK_TYP_ATTR_DEPS_PKG dependencies on FND_LANGUAGES
12.1.1
-
VIEW: CUG.CUG_TSK_TYP_ATTR_DEPS_TL#
12.2.2
owner:CUG, object_type:VIEW, object_name:CUG_TSK_TYP_ATTR_DEPS_TL#, status:VALID,
-
APPS.CUG_TSK_TYP_ATTR_DEPS_PKG dependencies on FND_LANGUAGES
12.2.2
-
SYNONYM: APPS.CUG_TSK_TYP_ATTR_DEPS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CUG_TSK_TYP_ATTR_DEPS_TL, status:VALID,
-
VIEW: CUG.CUG_TSK_TYP_ATTR_DEPS_TL#
12.2.2
-
VIEW: APPS.CUG_TSK_TYP_ATTR_DEPS_VL
12.1.1
-
SYNONYM: APPS.CUG_TSK_TYP_ATTR_DEPS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CUG_TSK_TYP_ATTR_DEPS_TL, status:VALID,
-
PACKAGE BODY: APPS.CUG_TSK_TYP_ATTR_DEPS_PKG
12.2.2
-
PACKAGE BODY: APPS.CUG_TSK_TYP_ATTR_DEPS_PKG
12.1.1
-
VIEW: APPS.CUG_TSK_TYP_ATTR_DEPS_VL
12.2.2
-
APPS.CUG_TSK_TYP_ATTR_DEPS_PKG dependencies on CUG_TSK_TYP_ATTR_DEPS_B
12.1.1
-
TABLE: CUG.CUG_TSK_TYP_ATTR_DEPS_TL
12.2.2
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_TL, object_name:CUG_TSK_TYP_ATTR_DEPS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.CUG_TSK_TYP_ATTR_DEPS_PKG dependencies on CUG_TSK_TYP_ATTR_DEPS_B
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: CUG.CUG_TSK_TYP_ATTR_DEPS_TL
12.1.1
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_TL, object_name:CUG_TSK_TYP_ATTR_DEPS_TL, status:VALID,
-
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 FND Design Data
12.1.1
-
Table: CUG_TSK_TYP_ATTR_DEPS_B
12.1.1
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_B, object_name:CUG_TSK_TYP_ATTR_DEPS_B, status:VALID, product: CUG - Citizen Interaction Center , description: This Table stores the dependencies between Task Type and Service Request Attributes for a Service Request Type , implementation_dba_data: CUG.CUG_TSK_TYP_ATTR_DEPS_B ,
-
Table: CUG_TSK_TYP_ATTR_DEPS_B
12.2.2
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_B, object_name:CUG_TSK_TYP_ATTR_DEPS_B, status:VALID, product: CUG - Citizen Interaction Center , description: This Table stores the dependencies between Task Type and Service Request Attributes for a Service Request Type , implementation_dba_data: CUG.CUG_TSK_TYP_ATTR_DEPS_B ,
-
PACKAGE BODY: APPS.CUG_TSK_TYP_ATTR_DEPS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_TSK_TYP_ATTR_DEPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.CUG_TSK_TYP_ATTR_DEPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_TSK_TYP_ATTR_DEPS_PKG, status:VALID,
-
View: CUG_TSK_TYP_ATTR_DEPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_VL, object_name:CUG_TSK_TYP_ATTR_DEPS_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_TSK_TYP_ATTR_DEPS_B and CUG_TSK_TYP_ATTR_DEPS_B . , implementation_dba_data: APPS.CUG_TSK_TYP_ATTR_DEPS_VL ,
-
View: CUG_TSK_TYP_ATTR_DEPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_VL, object_name:CUG_TSK_TYP_ATTR_DEPS_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_TSK_TYP_ATTR_DEPS_B and CUG_TSK_TYP_ATTR_DEPS_B . , implementation_dba_data: APPS.CUG_TSK_TYP_ATTR_DEPS_VL ,
-
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_TSK_TYP_ATTR_DEPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_VL, object_name:CUG_TSK_TYP_ATTR_DEPS_VL, status:VALID,
-
VIEW: APPS.CUG_TSK_TYP_ATTR_DEPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_VL, object_name:CUG_TSK_TYP_ATTR_DEPS_VL, 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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1