Search Results amw_assessment_components
Overview
The AMW_ASSESSMENT_COMPONENTS table is a data object within the Oracle E-Business Suite module AMW — Internal Controls Manager. It holds information about assessment components, which represent the individual building blocks evaluated during an internal control assessment. In the Oracle EBS 12.1.1 and 12.2.2 environments, this table is documented as part of the ETRM (E-Business Suite Technical Reference Manual) object inventory but is explicitly flagged as obsolete and "Not implemented in this database." This designation indicates that the object is retained in documentation and legacy reference material for historical completeness, but it is not physically deployed in the current instance. Consequently, it should not be relied upon for active development, customization, or reporting in 12.1.1 or 12.2.2 environments.
The metadata classifies AMW_ASSESSMENT_COMPONENTS heuristically as a "standalone" table in Data Vault terms. Under a Data Vault modeling suggestion, this object would be treated as a hub-like entity because it carries its own surrogate primary key (ASSESSMENT_COMPONENT_ID) and a distinct unique business-key index (AMW_ASSESSMENT_COMPONENTS_U1) on the same column. Its only foreign key links to FND_SECURITY_GROUPS, which is a security construct rather than a core business relationship, reinforcing the standalone classification.
Key Information Stored
The table is documented with 29 physical columns in the AMW owner schema. The most significant columns include:
- ASSESSMENT_COMPONENT_ID — the surrogate primary key defined by AMW_ASSESSMENT_COMPONENTS_PK and also the candidate business key via unique index AMW_ASSESSMENT_COMPONENTS_U1.
- ASSESSMENT_ID — identifies the parent assessment to which the component belongs, providing the principal grouping attribute for the component record.
- COMPONENT_CODE — a coded classification of the assessment component.
- OTHER_COMPONENT_VALUE — a free-form value used when COMPONENT_CODE resolves to an "other" category.
- OBJECT_TYPE and OBJECT_ID — a polymorphic reference pair linking the component to an arbitrary underlying object.
- SECURITY_GROUP_ID — the foreign key to FND_SECURITY_GROUPS, controlling row-level security.
- OBJECT_VERSION_NUMBER — used for optimistic locking during concurrent updates.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard Oracle EBS descriptive flexfield (DFF) context and segment columns.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, and LAST_UPDATE_LOGIN — the standard WHO audit columns present on nearly every Oracle EBS transactional table.
The distinction between the surrogate primary key and the unique index is noteworthy: in this table the same column serves both purposes, so no separate business-key column exists beyond ASSESSMENT_COMPONENT_ID.
Common Use Cases and Queries
Because the object is documented as obsolete and not implemented, practical use cases are primarily retrospective or analytical. Historical migrations, archive validation, and upgrade-impact assessments may still reference the object when comparing pre-12.1.1 schemas or third-party integrations that expected this structure. A representative query pattern based on the documented columns is:
- Selecting all components for a given assessment:
SELECT ASSESSMENT_COMPONENT_ID, COMPONENT_CODE, OBJECT_TYPE, OBJECT_ID FROM AMW_ASSESSMENT_COMPONENTS WHERE ASSESSMENT_ID = :assessment_id; - Retrieving descriptive flexfield detail:
SELECT ATTRIBUTE_CATEGORY, ATTRIBUTE1, ATTRIBUTE2 FROM AMW_ASSESSMENT_COMPONENTS WHERE SECURITY_GROUP_ID = :sgid; - Auditing recency:
SELECT ASSESSMENT_COMPONENT_ID, LAST_UPDATE_DATE, LAST_UPDATED_BY FROM AMW_ASSESSMENT_COMPONENTS ORDER BY LAST_UPDATE_DATE DESC;
Reporting use cases center on reassembling assessment structures for compliance reviews, confirming whether legacy assessments mapped components through COMPONENT_CODE, and reconciling counts against parent assessment records. Any such query should first verify that the table exists in the target instance, since the metadata states it is not implemented.
Related Objects
The following objects are relevant by documented relationship data or by functional proximity within the AMW module:
- FND_SECURITY_GROUPS — referenced via the documented foreign key AMW_ASSESSMENT_COMPONENTS.SECURITY_GROUP_ID.
- AMW_ASSESSMENTS — the presumed parent entity linked through ASSESSMENT_ID, grouping components into an assessment.
- AMW_ASSESSMENT_COMPONENTS_PK — the primary key constraint on ASSESSMENT_COMPONENT_ID.
- AMW_ASSESSMENT_COMPONENTS_U1 — the unique index on ASSESSMENT_COMPONENT_ID, serving as the business-key candidate.
- FND_OBJECTS / FND_OBJECT_INSTANCES — likely referenced indirectly by the OBJECT_TYPE and OBJECT_ID columns for polymorphic object resolution.
- FND_DESCR_FLEX_COLUMN_USAGES — defines the ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 flexfield context for this and similar AMW tables.
Together these relationships frame AMW_ASSESSMENT_COMPONENTS as a security-scoped, DFF-enabled child of an assessment structure, notwithstanding its currently obsolete status in Oracle EBS 12.1.1 and 12.2.2.
-
Table: AMW_ASSESSMENT_COMPONENTS
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Holds information about Assessment Components , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_ASSESSMENT_COMPONENTS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_ASSESSMENT_COMPONENTS, object_name:AMW_ASSESSMENT_COMPONENTS, status:VALID, product: AMW - Internal Controls Manager , description: Holds information about Assessment Components , implementation_dba_data: AMW.AMW_ASSESSMENT_COMPONENTS ,
-
Lookup Type: AMW_ASSESSMENT_COMPONENTS
12.1.1
product: AMW - Internal Controls Manager , meaning: AMW Assessment Components , description: AMW Assessment Components ,
-
Lookup Type: AMW_ASSESSMENT_COMPONENTS
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , meaning: AMW Assessment Components , description: AMW Assessment Components ,
-
View: AMW_EXPORT_CTRL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_EXPORT_CTRL_V, object_name:AMW_EXPORT_CTRL_V, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_EXPORT_CTRL_V ,
-
View: AMW_EXPORT_CTRL_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_COMPONENTS_PKG SQL Statements
12.1.1
-
VIEW: APPS.AMW_EXPORT_CTRL_V
12.1.1
-
SYNONYM: APPS.AMW_ASSESSMENT_COMPONENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_ASSESSMENT_COMPONENTS, status:VALID,
-
PACKAGE BODY: APPS.AMW_COMPONENTS_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_COMPONENTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_COMPONENTS_PKG, status:VALID,
-
APPS.AMW_LOAD_CTRL_DATA SQL Statements
12.1.1
-
TABLE: AMW.AMW_ASSESSMENT_COMPONENTS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_ASSESSMENT_COMPONENTS, object_name:AMW_ASSESSMENT_COMPONENTS, status:VALID,
-
PACKAGE BODY: APPS.AMW_DELETE_OBJECT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_DELETE_OBJECT_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMW_ASSESSMENTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_ASSESSMENTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMW_FIN_COSO_VIEWS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_FIN_COSO_VIEWS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMW_CONTROLS_PAGE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_CONTROLS_PAGE_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
APPS.AMW_CONTROLS_PAGE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_LOAD_CTRL_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_LOAD_CTRL_DATA, status:VALID,
-
PACKAGE BODY: APPS.AMW_LOAD_RCM_ORG_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_LOAD_RCM_ORG_DATA, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.AMW_LOAD_RC_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_LOAD_RC_DATA, status:VALID,
-
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
-
APPS.AMW_ASSESSMENTS_PVT SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.AMW_LOAD_RC_DATA SQL Statements
12.1.1
-
VIEW: APPS.AMW_EXPORT_CTRL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_EXPORT_CTRL_V, object_name:AMW_EXPORT_CTRL_V, status:VALID,
-
VIEW: APPS.AMW_BASIC_RCM_V
12.1.1
owner:APPS, object_type:VIEW, object_name:AMW_BASIC_RCM_V, status:VALID,
-
PACKAGE BODY: APPS.AMW_LOAD_CTRL_DATA
12.1.1
-
APPS.AMW_LOAD_RCM_ORG_DATA SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_ASSESSMENTS_PVT
12.1.1
-
APPS.AMW_DELETE_OBJECT_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_CONTROLS_PAGE_PKG
12.1.1
-
APPS.AMW_FIN_COSO_VIEWS_PVT SQL Statements
12.1.1
-
APPS.AMW_FIN_COSO_VIEWS_PVT dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
APPS.AMW_DELETE_OBJECT_PVT dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
APPS.AMW_LOAD_RC_DATA dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
APPS.AMW_CONTROLS_PAGE_PKG dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
APPS.AMW_ASSESSMENTS_PVT dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
APPS.AMW_COMPONENTS_PKG dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
APPS.AMW_LOAD_RCM_ORG_DATA dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
APPS.AMW_LOAD_CTRL_DATA dependencies on AMW_ASSESSMENT_COMPONENTS
12.1.1
-
PACKAGE BODY: APPS.AMW_LOAD_RC_DATA
12.1.1
-
PACKAGE BODY: APPS.AMW_LOAD_RCM_ORG_DATA
12.1.1
-
PACKAGE BODY: APPS.AMW_DELETE_OBJECT_PVT
12.1.1
-
APPS.AMW_FIN_COSO_VIEWS_PVT dependencies on AMW_FIN_ITEM_ACC_CTRL
12.1.1