Search Results amw_exceptions_tl
Overview
AMW_EXCEPTIONS_TL is a translation table within the AMW (Internal Controls Manager) product schema of Oracle E-Business Suite, documented as VALID in both release 12.1.1 and 12.2.2. Its stated purpose is to store translated exception justifications — the localized, language-specific narrative text that accompanies a recorded exception in the Internal Controls Manager certification and compliance workflow. In Oracle EBS multilanguage architecture, a base table holds the language-independent attributes of a record, while a companion "_TL" table holds one row per installed language for each translatable attribute. AMW_EXCEPTIONS_TL follows exactly this pattern: it is the translated child of AMW_EXCEPTIONS_B, the base table that owns the exception record itself.
The table carries a foreign key on EXCEPTION_ID to AMW_EXCEPTIONS_B and a foreign key on SECURITY_GROUP_ID to FND_SECURITY_GROUPS, which ties each translated row to a specific operating unit or security context. Because the table records descriptive and historical attributes about a parent business entity rather than defining the entity or the relationship between entities, the mined Data Vault classification is satellite-leaning; it is best modeled as a satellite attached to the AMW_EXCEPTIONS_B hub (or link) keyed by exception identifier and language.
Key Information Stored
The documented physical schema for release 12.1.1 contains thirteen columns. The most significant are:
- EXCEPTION_ID — the surrogate identifier of the parent exception; also the foreign key to AMW_EXCEPTIONS_B and the leading column of the translation key when combined with LANGUAGE.
- LANGUAGE — the installed language code for which the justification text is supplied.
- SOURCE_LANGUAGE and SOURCE_LANG — the language from which the justification was originally authored or translated.
- JUSTIFICATION — the translated free-text explanation of why an exception was granted or accepted; this is the principal business payload of the table.
- OLD_PROCESS_NAME and NEW_PROCESS_NAME — the process labels before and after a change, enabling translated display of process renames on historical exception rows.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — the standard EBS WHO columns that provide audit trail and concurrency information for each translated row.
- SECURITY_GROUP_ID — the security group (operating unit) that owns the translated record, enforced through the reference to FND_SECURITY_GROUPS.
The true primary key is the composite of EXCEPTION_ID and LANGUAGE; EXCEPTION_ID alone is a foreign key, not a unique identifier. No additional business-key unique index is documented beyond this composite.
Common Use Cases and Queries
Reporting against exception justifications is the dominant use case. A typical query joins the base and translation tables, filtering on the session language so that each exception returns exactly one localized justification. For example:
- SELECT b.exception_id, t.justification FROM amw_exceptions_b b, amw_exceptions_tl t WHERE b.exception_id = t.exception_id AND t.language = USERENV('LANG');
- Exception audit extracts that compare SOURCE_LANGUAGE against LANGUAGE to identify records still requiring translation.
- Certification and compliance reporting that lists, per security group, all exceptions and their translated justification text.
- Change-tracking queries using OLD_PROCESS_NAME and NEW_PROCESS_NAME to display historical process context in the user's language.
Because JUSTIFICATION is a long text column, reporting tools should treat it as a CLOB-style attribute and avoid sorting or grouping on it.
Related Objects
- AMW_EXCEPTIONS_B — the base table holding language-independent exception data; joined on EXCEPTION_ID. This is the mandatory parent of every row.
- FND_SECURITY_GROUPS — referenced by SECURITY_GROUP_ID to enforce operating-unit security.
- FND_LANGUAGES — the reference source for valid values of LANGUAGE and SOURCE_LANGUAGE.
- AMW_EXCEPTIONS_VL — where defined, the MLS view that unions base and translated columns for simplified querying.
- AMW_EXCEPTIONS_TL._S or _A audit tables — maintained by the EBS audit trail, when enabled, to capture changes to translated justifications.
- AMW certification and exception APIs — the AMW PL/SQL packages that insert, update, and delete translated justification rows as part of exception processing.
-
Table: AMW_EXCEPTIONS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_EXCEPTIONS_TL, object_name:AMW_EXCEPTIONS_TL, status:VALID, product: AMW - Internal Controls Manager , description: Stores translated exception justifications , implementation_dba_data: AMW.AMW_EXCEPTIONS_TL ,
-
Table: AMW_EXCEPTIONS_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Stores translated exception justifications , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_EXCEPTIONS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.AMW_EXCEPTIONS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_EXCEPTIONS_TL, status:VALID,
-
VIEW: APPS.AMW_EXCEPTIONS_VL
12.1.1
-
PACKAGE BODY: APPS.AMW_EXCEPTIONS_PKG
12.1.1
-
TABLE: AMW.AMW_EXCEPTIONS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_EXCEPTIONS_TL, object_name:AMW_EXCEPTIONS_TL, status:VALID,
-
Table: AMW_EXCEPTIONS_B
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Exceptions Base Table , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_EXCEPTIONS_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_EXCEPTIONS_B, object_name:AMW_EXCEPTIONS_B, status:VALID, product: AMW - Internal Controls Manager , description: Exceptions Base Table , implementation_dba_data: AMW.AMW_EXCEPTIONS_B ,
-
PACKAGE BODY: APPS.AMW_EXCEPTIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_EXCEPTIONS_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMW_WF_HIERARCHY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_WF_HIERARCHY_PKG, status:VALID,
-
View: AMW_EXCEPTIONS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Combination of exceptions _b and _tl tables , implementation_dba_data: Not implemented in this database ,
-
View: AMW_EXCEPTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_EXCEPTIONS_VL, object_name:AMW_EXCEPTIONS_VL, status:VALID, product: AMW - Internal Controls Manager , description: Combination of exceptions _b and _tl tables , implementation_dba_data: APPS.AMW_EXCEPTIONS_VL ,
-
PACKAGE BODY: APPS.AMW_UTILITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_UTILITY_PVT, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AMW_ORG_HIERARCHY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_ORG_HIERARCHY_PKG, status:VALID,
-
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
-
VIEW: APPS.AMW_EXCEPTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_EXCEPTIONS_VL, object_name:AMW_EXCEPTIONS_VL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.AMW_UTILITY_PVT SQL Statements
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG SQL Statements
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG dependencies on AMW_EXCEPTIONS_TL
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG dependencies on AMW_EXCEPTIONS_TL
12.1.1
-
APPS.AMW_UTILITY_PVT dependencies on AMW_EXCEPTIONS_TL
12.1.1
-
APPS.AMW_EXCEPTIONS_PKG dependencies on AMW_EXCEPTIONS_TL
12.1.1
-
PACKAGE BODY: APPS.AMW_UTILITY_PVT
12.1.1
-
APPS.AMW_EXCEPTIONS_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.AMW_EXCEPTIONS_PKG dependencies on AMW_EXCEPTIONS_B
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG dependencies on AMW_EXCEPTIONS_REASONS
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG dependencies on AMW_EXCEPTIONS_B
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 ,
-
APPS.AMW_ORG_HIERARCHY_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_WF_HIERARCHY_PKG
12.1.1
-
APPS.AMW_EXCEPTIONS_PKG dependencies on FND_API
12.1.1
-
PACKAGE BODY: APPS.AMW_ORG_HIERARCHY_PKG
12.1.1
-
APPS.AMW_WF_HIERARCHY_PKG dependencies on AMW_PROCESS
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 ,
-
12.1.1 DBA Data
12.1.1
-
APPS.AMW_ORG_HIERARCHY_PKG dependencies on FND_API
12.1.1