Search Results opinion_component_id
Overview
The AMW_OPINION_DETAILS table is a core data entity within the Oracle E-Business Suite (EBS) Application Management (AMW) module, specifically versions 12.1.1 and 12.2.2. This table functions as a detail line repository for opinions, which are formal assessments or evaluations within the governance, risk, and compliance (GRC) framework. Its primary role is to store the specific values, summaries, and descriptions assigned to individual components that collectively form a complete opinion. Each record links a high-level opinion to its constituent parts, enabling granular tracking and reporting on assessment criteria.
Key Information Stored
The table's structure is designed to capture the relationship between an opinion, its components, and the selected values. The most critical columns include the surrogate key OPINION_DETAIL_ID and the three foreign key columns that define its relationships: OPINION_ID (linking to AMW_OPINIONS), OPINION_COMPONENT_ID (linking to AMW_OPINION_COMPONTS_B), and OPINION_VALUE_ID (linking to AMW_OPINION_VALUES_B). The SUMMARY_TXT and DESCRIPTION_TXT columns hold the textual details for the specific component. Standard EBS columns (CREATED_BY, LAST_UPDATE_DATE, OBJECT_VERSION_NUMBER) facilitate auditing and data versioning. The unique index AMW_OPINION_DETAILS_U2 on OPINION_ID and OPINION_COMPONENT_ID enforces that a single opinion cannot have duplicate entries for the same component.
Common Use Cases and Queries
This table is central to querying the detailed results of any formal assessment. A primary use case is generating a report that lists all components and their assigned values for a specific opinion. For example, to retrieve the complete detail for an opinion identified by a specific OPINION_ID, a developer or report writer would execute a join to the referenced lookup tables:
SELECT od.OPINION_ID,
oc.COMPONENT_NAME,
ov.VALUE_NAME,
od.SUMMARY_TXT,
od.DESCRIPTION_TXT
FROM AMW_OPINION_DETAILS od,
AMW_OPINION_COMPONTS_B oc,
AMW_OPINION_VALUES_B ov
WHERE od.OPINION_COMPONENT_ID = oc.OPINION_COMPONENT_ID
AND od.OPINION_VALUE_ID = ov.OPINION_VALUE_ID
AND od.OPINION_ID = :p_opinion_id;
Another common scenario involves data validation or migration scripts that need to verify or manipulate opinion details based on specific component criteria, leveraging the OPINION_COMPONENT_ID for filtering.
Related Objects
AMW_OPINION_DETAILS is a child table within a well-defined hierarchy and has documented foreign key relationships with three parent tables:
- AMW_OPINIONS: Via the column OPINION_ID. This is the parent opinion header record.
- AMW_OPINION_COMPONTS_B: Via the column OPINION_COMPONENT_ID. This table defines the assessable components or criteria.
- AMW_OPINION_VALUES_B: Via the column OPINION_VALUE_ID. This table contains the permissible rating values (e.g., Effective, Ineffective) for components.
Furthermore, the table is referenced by the materialized view AMW_OPINION_MV, indicating its data is aggregated or summarized for performance-critical reporting and analytics within the AMW module.
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OPINION_DETAILS
12.1.1
-
APPS.RCI_ORG_DFCY_ETL_PKG dependencies on AMW_OPINION_COMPONTS_B
12.1.1
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_OPINION_COMPONTS_B
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.RCI_CTRL_DETAIL_ETL_PKG dependencies on AMW_OPINION_COMPONTS_B
12.1.1
-
APPS.AMW_OPINION_COMPONTS_PKG dependencies on AMW_OPINION_COMPONTS_B
12.1.1
-
APPS.AMW_OPINION_COMPONTS_PKG SQL Statements
12.1.1
-
TABLE: AMW.AMW_OPINION_DETAILS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_DETAILS, object_name:AMW_OPINION_DETAILS, status:VALID,
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_OPINION_VALUES_TL
12.1.1
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_OPINION_LOG_DETAILS
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on FND_OBJECTS
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OPINION_COMPONTS_B
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OPINION_LOG_DETAILS
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OPINION_DETAILS_S1
12.1.1
-
APPS.RCI_CTRL_DETAIL_ETL_PKG dependencies on AMW_OPINION_LOG_DETAILS
12.1.1
-
APPS.RCI_ORG_DFCY_ETL_PKG dependencies on AMW_OPINION_VALUES_TL
12.1.1
-
APPS.RCI_ORG_DFCY_ETL_PKG dependencies on AMW_OPINION_LOG_DETAILS
12.1.1
-
PACKAGE BODY: APPS.AMW_OPINION_COMPONTS_PKG
12.1.1
-
APPS.RCI_CTRL_DETAIL_ETL_PKG dependencies on AMW_OPINION_VALUES_TL
12.1.1
-
APPS.AMW_OPINION_COMPONTS_PKG dependencies on AMW_OPINION_COMPONTS_PKG
12.1.1
-
APPS.AMW_OPINION_COMPONTS_PKG dependencies on AMW_OPINION_COMPONTS_TL
12.1.1
-
VIEW: APPS.AMW_OPINIONS_V
12.1.1
-
APPS.RCI_ORG_DFCY_ETL_PKG dependencies on AMW_CONTROLS_ALL_VL
12.1.1
-
VIEW: APPS.AMW_OPINIONS_LOG_V
12.1.1
-
View: AMW_OPINIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_OPINIONS_V, object_name:AMW_OPINIONS_V, status:VALID, product: AMW - Internal Controls Manager , description: Opinions View , implementation_dba_data: APPS.AMW_OPINIONS_V ,
-
View: AMW_OPINIONS_LOG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Opinions log View , implementation_dba_data: Not implemented in this database ,
-
TABLE: AMW.AMW_OPINION_COMPONTS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_COMPONTS_TL, object_name:AMW_OPINION_COMPONTS_TL, status:VALID,
-
TABLE: AMW.AMW_OPINION_COMPONTS_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_COMPONTS_B, object_name:AMW_OPINION_COMPONTS_B, status:VALID,
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OPINION_LOG_DETAILS_S
12.1.1
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_CONTROL_ASSOCIATIONS
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA SQL Statements
12.1.1
-
APPS.AMW_OPINION_COMPONTS_PKG dependencies on FND_LOAD_UTIL
12.1.1
-
TABLE: AMW.AMW_OPINION_LOG_DETAILS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_LOG_DETAILS, object_name:AMW_OPINION_LOG_DETAILS, status:VALID,
-
Table: AMW_OPINION_COMPONTS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_COMPONTS_TL, object_name:AMW_OPINION_COMPONTS_TL, status:VALID, product: AMW - Internal Controls Manager , description: Opinion Components Translatable Table , implementation_dba_data: AMW.AMW_OPINION_COMPONTS_TL ,
-
View: AMW_OPINIONS_LOG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_OPINIONS_LOG_V, object_name:AMW_OPINIONS_LOG_V, status:VALID, product: AMW - Internal Controls Manager , description: Opinions log View , implementation_dba_data: APPS.AMW_OPINIONS_LOG_V ,
-
View: AMW_OPINIONS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Opinions View , implementation_dba_data: Not implemented in this database ,
-
APPS.RCI_ORG_DFCY_ETL_PKG dependencies on AMW_CONTROL_ASSOCIATIONS
12.1.1
-
APPS.AMW_OPINION_VALUES_PKG dependencies on AMW_OPINION_VALUES_B
12.1.1
-
Table: AMW_OPINION_COMPONTS_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Opinion Components Translatable Table , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_OPINION_VALUES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_OPINION_VALUES_VL, object_name:AMW_OPINION_VALUES_VL, status:VALID,
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_CONTROLS_ALL_VL
12.1.1
-
Table: AMW_OPINION_COMPONTS_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_COMPONTS_B, object_name:AMW_OPINION_COMPONTS_B, status:VALID, product: AMW - Internal Controls Manager , description: Opinion Components Base Table , implementation_dba_data: AMW.AMW_OPINION_COMPONTS_B ,
-
Table: AMW_OPINION_COMPONTS_B
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Opinion Components Base Table , implementation_dba_data: Not implemented in this database ,
-
View: AMW_OPINION_VALUES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_OPINION_VALUES_VL, object_name:AMW_OPINION_VALUES_VL, status:VALID, product: AMW - Internal Controls Manager , description: Opinions Values View , implementation_dba_data: APPS.AMW_OPINION_VALUES_VL ,
-
TABLE: AMW.AMW_OPINION_VALUES_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_VALUES_B, object_name:AMW_OPINION_VALUES_B, status:VALID,
-
View: AMW_OPINION_VALUES_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Opinions Values View , implementation_dba_data: Not implemented in this database ,
-
APPS.RCI_CTRL_DETAIL_ETL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA
12.1.1
-
APPS.AMW_OPINION_VALUES_PKG SQL Statements
12.1.1
-
APPS.RCI_ORG_DFCY_ETL_PKG SQL Statements
12.1.1