Search Results amw_ctrl_ext_tl
Overview
AMW_CTRL_EXT_TL is a translation (TL) table within the AMW schema — the Oracle Internal Controls Manager (ICM) module of Oracle E-Business Suite. In EBS 12.1.1 and 12.2.2, ICM stores the definition of internal controls, their organization mappings, testing plans, and results. The extensible-attribute framework allows customers to capture organization-specific information against a control that Oracle does not ship as seeded columns. AMW_CTRL_EXT_TL holds the language-specific (translated) values of those extensible attributes, providing one row per control extension per installed language.
The table is a key member of the extensibility layer that surrounds the base control definition. Where the base extension table carries the attribute values in the source language, AMW_CTRL_EXT_TL carries the translated attribute values (TL_EXT_ATTR1 through TL_EXT_ATTR40) plus the LANGUAGE and SOURCE_LANG columns that drive the multi-language lookup behavior. This design follows the standard EBS _TL pattern: a base table and a _TL table linked by EXTENSION_ID.
From a Data Vault modeling perspective, ETRM classifies this object as standalone (no outbound foreign keys other than the CONTROL_ID reference to CST_REVENUE_COGS_CONTROL). A reasonable heuristic suggestion is to treat AMW_CTRL_EXT_TL as a satellite attached to the control hub (CONTROL_ID) and extension hub (EXTENSION_ID), because it holds descriptive, language-dependent attributes rather than transactional relationships.
Key Information Stored
The 53 documented columns fall into three functional groups:
- Primary key / surrogate: EXTENSION_ID — the surrogate key identifying the extension record. In EBS _TL design, EXTENSION_ID plus LANGUAGE typically forms the unique key of the row.
- Work and grouping context: WORK_ID, WORK_ELEM_ID, ATTR_GROUP_ID, and WORK_TYPE_ID identify the work item, element, grouping, and type to which the control extension belongs.
- Language control: LANGUAGE stores the language of the row; SOURCE_LANG records the language in which the value was originally entered, enabling the standard EBS translation and fallback mechanism.
- Translated attribute payload: TL_EXT_ATTR1 through TL_EXT_ATTR40 hold the translated values of the extensible attributes. These are the business data users see when a non-base language is selected.
- Foreign key: CONTROL_ID links the extension to the control definition; this is the primary business-key candidate documented in the ETRM relationship data, referencing CST_REVENUE_COGS_CONTROL.
- Audit columns: LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, and CREATION_DATE provide the standard EBS who/when audit trail.
Common Use Cases and Queries
AMW_CTRL_EXT_TL is typically queried in three scenarios: (1) reporting translated control attributes for a given language, (2) joining the base and translated extension tables to reconcile source-language and translated values, and (3) building ICM control-detail extracts for audit, SOX compliance, or risk dashboards.
A representative query retrieves the translated attribute values for a control in a target language:
SELECT c.control_id, t.language, t.tl_ext_attr1, t.tl_ext_attr2, t.tl_ext_attr3FROM amw.amw_ctrl_ext_tl tJOIN amw.amw_ctrl_ext b ON b.extension_id = t.extension_idWHERE t.control_id = :control_id AND t.language = USERENV('LANG');
Because the table stores up to forty translated attributes, reporting tools generally pivot via ATTR_GROUP_ID to display only the attributes relevant to a given attribute group. Audit extracts commonly compare SOURCE_LANG values against the base extension table to confirm translation completeness across installed languages.
Related Objects
- CST_REVENUE_COGS_CONTROL — referenced via CONTROL_ID; the control definition that the extension decorates.
- AMW_CTRL_EXT (base table) — the source-language counterpart sharing EXTENSION_ID, joined to reconcile translated and untranslated values.
- AMW_CTRL_EXT_B / base extension hierarchy — parent records that define WORK_ID, WORK_ELEM_ID, ATTR_GROUP_ID, and WORK_TYPE_ID context.
- FND_LANGUAGES — reference table for the LANGUAGE and SOURCE_LANG codes.
- AMW_CTRL_ATTR_GROUPS — defines the attribute groups whose members populate TL_EXT_ATTR1..40.
- AMW_WORK_ITEMS / AMW_WORK_ELEMENTS — provide the work context used by WORK_ID and WORK_ELEM_ID.
- FND_USER — resolves CREATED_BY and LAST_UPDATED_BY to user names for audit reporting.
-
Table: AMW_CTRL_EXT_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_CTRL_EXT_TL, object_name:AMW_CTRL_EXT_TL, status:VALID, product: AMW - Internal Controls Manager , description: Contains the extensible attributes details for controls , implementation_dba_data: AMW.AMW_CTRL_EXT_TL ,
-
Table: AMW_CTRL_EXT_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Contains the extensible attributes details for controls , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.AMW_CTRL_EXT_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_CTRL_EXT_TL, status:VALID,
-
APPS.AMW_CTRL_EXT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_CTRL_EXT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_CTRL_EXT_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMW_CTRL_EXT_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_DELETE_OBJECT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_DELETE_OBJECT_PVT, status:VALID,
-
TABLE: AMW.AMW_CTRL_EXT_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_CTRL_EXT_TL, object_name:AMW_CTRL_EXT_TL, status:VALID,
-
VIEW: APPS.AMW_CTRL_EXT_VL
12.1.1
-
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: AMW_CTRL_EXT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CTRL_EXT_VL, object_name:AMW_CTRL_EXT_VL, status:VALID, product: AMW - Internal Controls Manager , description: Extensible attributes view for controls , implementation_dba_data: APPS.AMW_CTRL_EXT_VL ,
-
View: AMW_CTRL_EXT_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Extensible attributes view for controls , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_DELETE_OBJECT_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMW_CTRL_EXT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CTRL_EXT_VL, object_name:AMW_CTRL_EXT_VL, status:VALID,
-
APPS.AMW_CTRL_EXT_PKG dependencies on AMW_CTRL_EXT_TL
12.1.1
-
APPS.AMW_DELETE_OBJECT_PVT dependencies on AMW_CTRL_EXT_TL
12.1.1
-
PACKAGE BODY: APPS.AMW_DELETE_OBJECT_PVT
12.1.1
-
APPS.AMW_CTRL_EXT_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.AMW_CTRL_EXT_PKG dependencies on AMW_CTRL_EXT_B
12.1.1
-
APPS.AMW_DELETE_OBJECT_PVT dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
APPS.AMW_DELETE_OBJECT_PVT dependencies on AMW_CTRL_EXT_B
12.1.1
-
APPS.AMW_DELETE_OBJECT_PVT dependencies on FND_ATTACHED_DOCUMENTS2_PKG
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