Search Results amw_object_opinion_types
Overview
The AMW_OBJECT_OPINION_TYPES table is a core data object within the AMW (Internal Controls Manager) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. This table functions as a critical junction or mapping table, establishing the permissible relationships between specific objects in the system and the types of opinions that can be rendered upon them. In the context of Internal Controls Manager, an "object" is a business entity, such as a process, risk, or control, while an "opinion" represents a formal assessment or judgment. By defining which opinion types are applicable to which objects, this table enforces data integrity and provides the structural foundation for the compliance and audit assessment workflows central to the module.
Key Information Stored
The table's primary purpose is to store unique mappings, with each record identified by a system-generated primary key. The key columns that define these relationships are the OBJECT_ID, which references a specific business entity in the system, and the OPINION_TYPE_ID, which references a valid type of assessment. The combination of these foreign keys creates the essential link. While the provided metadata does not list all columns, the primary key column OBJECT_OPINION_TYPE_ID is a surrogate key uniquely identifying each mapping record. Other typical columns in such junction tables would include creation date, created by, last update date, and last updated by for auditing purposes.
Common Use Cases and Queries
The primary use case is to determine all valid opinion types that can be assigned to a given control or process object during an assessment. This is crucial for configuring assessment templates and ensuring users select from a controlled list. A common reporting need is to list all objects along with their associated opinion types for a process review. Sample SQL to retrieve this mapping would join to the referenced tables for descriptive information:
SELECT fobj.OBJECT_NAME, aotb.NAME FROM AMW_OBJECT_OPINION_TYPES aoot, FND_OBJECTS fobj, AMW_OPINION_TYPES_B aotb WHERE aoot.OBJECT_ID = fobj.OBJECT_ID AND aoot.OPINION_TYPE_ID = aotb.OPINION_TYPE_ID;
Another critical query validates data before creating a new opinion record, ensuring the proposed object and opinion type combination exists in AMW_OBJECT_OPINION_TYPES.
Related Objects
As documented in the foreign key relationships, AMW_OBJECT_OPINION_TYPES sits at the center of a key data model. It is directly referenced by child transactional tables and references master data tables. The documented relationships are:
- Referenced Master Tables: The table draws its valid values from AMW_OPINION_TYPES_B (via OPINION_TYPE_ID) for opinion type definitions and from FND_OBJECTS (via OBJECT_ID) for the list of system business entities.
- Referencing Transactional Tables: The table's primary key (OBJECT_OPINION_TYPE_ID) is referenced as a foreign key by AMW_OPINIONS, which stores the actual opinion instances, and by AMW_OPINION_COMPONTS_B, which stores components or sub-opinions. This design ensures every recorded opinion is based on a pre-defined, valid object-opinion type relationship.
-
Table: AMW_OBJECT_OPINION_TYPES
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OBJECT_OPINION_TYPES, object_name:AMW_OBJECT_OPINION_TYPES, status:VALID, product: AMW - Internal Controls Manager , description: Objects - Opinion Types Table , implementation_dba_data: AMW.AMW_OBJECT_OPINION_TYPES ,
-
Table: AMW_OBJECT_OPINION_TYPES
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Objects - Opinion Types Table , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_FINSTMT_CERT_MIG_PKG dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_PUBLIC_PKG dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_PROCCERT_EVENT_PVT dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_UTILITY_PVT dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_PROCESS_CERT_SUMMARY dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_OBJECT_OPINION_TYPES_PKG dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OBJECT_OPINION_TYPES
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on FND_OBJECTS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_OPINION_TYPES_TL
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_OPINION_TYPES_B
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OPINION_COMPONTS_B
12.1.1
-
APPS.AMW_UTILITY_PVT dependencies on AMW_OPINION_TYPES_B
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on FND_OBJECTS
12.1.1
-
APPS.AMW_UTILITY_PVT dependencies on FND_OBJECTS
12.1.1
-
APPS.AMW_PUBLIC_PKG SQL Statements
12.1.1
-
APPS.AMW_UTILITY_PVT dependencies on AMW_OPINIONS_V
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on FND_OBJECTS
12.1.1
-
APPS.AMW_PROCESS_CERT_SUMMARY dependencies on AMW_OPINION_TYPES_B
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_OPINIONS_V
12.1.1
-
APPS.AMW_PUBLIC_PKG dependencies on AMW_OPINIONS_V
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_WF_ORG_HIERARCHY_MAIN_V
12.1.1
-
APPS.AMW_OBJECT_OPINION_TYPES_PKG SQL Statements
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_PROCESS_ORG_BASICINFO_V
12.1.1
-
APPS.AMW_PROCCERT_EVENT_PVT dependencies on AMW_OPINION_TYPES_B
12.1.1
-
APPS.AMW_PUBLIC_PKG dependencies on FND_OBJECTS
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on AMW_OPINION_TYPES_B
12.1.1
-
APPS.AMW_FINSTMT_CERT_MIG_PKG dependencies on AMW_OPINION_TYPES_B
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA dependencies on AMW_OPINION_TYPES_B
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on PA_PROJECT_LISTS_V
12.1.1
-
PACKAGE BODY: APPS.AMW_PUBLIC_PKG
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_RISK_ASSOCIATIONS
12.1.1
-
APPS.AMW_PUBLIC_PKG dependencies on AMW_OPINION_TYPES_B
12.1.1
-
APPS.AMW_FINSTMT_CERT_MIG_PKG dependencies on FND_OBJECTS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_AUDIT_UNITS_V
12.1.1
-
VIEW: APPS.RCI_FS_ACCT_EVAL_V
12.1.1
-
SYNONYM: APPS.AMW_OBJECT_OPINION_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_OBJECT_OPINION_TYPES, status:VALID,
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_CONTROL_ASSOCIATIONS
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_PROC_CERT_EVAL_SUM
12.1.1
-
APPS.AMW_FINSTMT_CERT_MIG_PKG dependencies on AMW_OPINIONS_LOG
12.1.1
-
PACKAGE BODY: APPS.AMW_OBJECT_OPINION_TYPES_PKG
12.1.1
-
VIEW: APPS.RCI_BP_CERT_RESULT_V
12.1.1
-
VIEW: APPS.RCI_BP_ORG_CERT_RESULT_V
12.1.1
-
VIEW: APPS.AMW_OPINION_M_V
12.1.1
-
Table: AMW_OPINION_TYPES_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_TYPES_B, object_name:AMW_OPINION_TYPES_B, status:VALID, product: AMW - Internal Controls Manager , description: Opinion Types Base Table , implementation_dba_data: AMW.AMW_OPINION_TYPES_B ,
-
TABLE: AMW.AMW_OBJECT_OPINION_TYPES
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OBJECT_OPINION_TYPES, object_name:AMW_OBJECT_OPINION_TYPES, status:VALID,
-
Table: AMW_OPINION_TYPES_B
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Opinion Types Base Table , implementation_dba_data: Not implemented in this database ,