Search Results amw_work_categories_tl
Overview
AMW_WORK_CATEGORIES_TL is the translation (language) table for work category definitions within the Oracle Internal Controls Manager (AMW) product module. In Oracle EBS 12.1.1 and 12.2.2, this table stores the language-specific category name, plural name, and description attributes for each work category. It is the _TL companion to AMW_WORK_CATEGORIES_B, the base table that holds language-independent attributes. Work categories classify work items such as issues, findings, remediation plans, and audit engagements managed through Internal Controls Manager, allowing users to group and report on work of similar type.
From a heuristic Data Vault modeling perspective, this table would most naturally be classified as a satellite, since it carries descriptive, language-dependent attributes (name, description) that qualify the core category business entity whose surrogate key lives in the base table. The metadata also documents a foreign key to FND_SECURITY_GROUPS, indicating integration with Oracle Application Object Library security group definitions.
Key Information Stored
The table is defined in the AMW schema and contains 13 documented columns. The most significant are:
- CATEGORY_ID – Surrogate key inherited from AMW_WORK_CATEGORIES_B; part of the composite primary key (AMW_WORK_CATEGORIES_TL_PK). It links each translation row to its base category.
- LANGUAGE – The language code for the translation, forming the second component of the primary key.
- CATEGORY_NAME – The translated display name shown to end users in the appropriate language.
- PLURAL_NAME – The translated plural form used in list-of-values and reporting contexts.
- DESCRIPTION – The translated textual description of the work category.
- SOURCE_LANG – Identifies the source language of the original translation, supporting Oracle's translation propagation conventions.
- SECURITY_GROUP_ID – Foreign key to FND_SECURITY_GROUPS, governing which security group can view the category.
- OBJECT_VERSION_NUMBER – Optimistic locking column used by the Oracle AOL framework to prevent concurrent update conflicts.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN – Standard Oracle who-columns tracking record creation and maintenance for audit purposes.
The business key is effectively the combination of the base category identity (CATEGORY_ID) plus LANGUAGE, enforced by the primary key. There is no independent unique business index documented beyond AMW_WORK_CATEGORIES_TL_PK.
Common Use Cases and Queries
Typical uses include building multilingual work category list-of-values and reporting on categories in the user's session language. A common join retrieves the translated name for a given language:
SELECT b.category_id, t.category_name, t.plural_name, t.description
FROM amw_work_categories_b b,
amw_work_categories_tl t
WHERE b.category_id = t.category_id
AND t.language = USERENV('LANG');
Security-aware queries filter by SECURITY_GROUP_ID, and audit reports typically examine CREATED_BY / LAST_UPDATED_BY columns. Note that in a multi-language installation, rows are keyed by CATEGORY_ID plus LANGUAGE, so queries must always include a language predicate to avoid returning duplicate rows.
Related Objects
- AMW_WORK_CATEGORIES_B – The base table holding language-independent attributes; joined on CATEGORY_ID.
- FND_SECURITY_GROUPS – Referenced via SECURITY_GROUP_ID to enforce security group access.
- FND_LANGUAGES – Provides language validation for the LANGUAGE column via the standard AOL framework.
- AMW_WORK_CATEGORIES_TL_PK – The composite primary key (CATEGORY_ID, LANGUAGE) enforcing translation uniqueness.
- FND_APPLICATION / FND_PRODUCT_INSTALLATIONS – Supporting AOL objects whose configuration governs the table's runtime behavior.
-
Table: AMW_WORK_CATEGORIES_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_WORK_CATEGORIES_TL, object_name:AMW_WORK_CATEGORIES_TL, status:VALID, product: AMW - Internal Controls Manager , description: Contains category name and description for AMW_WORK_CATEGORIES_B , implementation_dba_data: AMW.AMW_WORK_CATEGORIES_TL ,
-
Table: AMW_WORK_CATEGORIES_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Contains category name and description for AMW_WORK_CATEGORIES_B , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_WORK_CATEGORIES_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_WORK_CATEGORIES_PKG
12.1.1
-
SYNONYM: APPS.AMW_WORK_CATEGORIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_WORK_CATEGORIES_TL, status:VALID,
-
VIEW: APPS.AMW_WORK_CATEGORIES_VL
12.1.1
-
PACKAGE BODY: APPS.AMW_WORK_CATEGORIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_WORK_CATEGORIES_PKG, status:VALID,
-
TABLE: AMW.AMW_WORK_CATEGORIES_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_WORK_CATEGORIES_TL, object_name:AMW_WORK_CATEGORIES_TL, status:VALID,
-
View: AMW_WORK_CATEGORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WORK_CATEGORIES_VL, object_name:AMW_WORK_CATEGORIES_VL, status:VALID, product: AMW - Internal Controls Manager , description: View for Work category , implementation_dba_data: APPS.AMW_WORK_CATEGORIES_VL ,
-
View: AMW_WORK_CATEGORIES_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for Work category , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AMW_WORK_CATEGORIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WORK_CATEGORIES_VL, object_name:AMW_WORK_CATEGORIES_VL, status:VALID,
-
APPS.AMW_WORK_CATEGORIES_PKG dependencies on AMW_WORK_CATEGORIES_TL
12.1.1
-
APPS.AMW_WORK_CATEGORIES_PKG dependencies on AMW_WORK_CATEGORIES_B
12.1.1
-
APPS.AMW_WORK_CATEGORIES_PKG dependencies on FND_LANGUAGES
12.1.1
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,
-
eTRM - AMW Tables and Views
12.1.1
description: This fact table stores the summary data related to the Significant Account Evaluation report ,
-
12.1.1 DBA Data
12.1.1