Search Results opinion_value_code_name
Overview
APPS.AMW_OPINIONS_V is a reporting and integration view within the Oracle E-Business Suite ETRM (Enterprise Transaction and Records Management) module, formerly delivered under the AMW (Approvals Management) schema family. The view exposes opinion records — human or system evaluations attached to EBS objects — in a denormalized, human-readable form suitable for concurrent program reports, OAF pages, and downstream integrations. Rather than requiring the caller to join the opinions header, object opinion types, opinion values, language translations, and HR person data manually, the view performs these joins internally and returns a single row per opinion with resolved author name, audit result label, and audit result codes.
The object is of particular interest because the user search term amw_opinion_display_option appears directly in the view definition. The profile option AMW_OPINION_DISPLAY_OPTION controls whether the audit result is rendered as an image file or as text. This conditional logic is embedded in the view, meaning the view's output can vary at runtime based on the current profile value.
Underlying Base Objects
The ETRM metadata lists no explicitly documented referenced base objects, but the view text itself enumerates them unambiguously:
- AMW_OPINIONS — the primary opinion header table (aliased
ao). - AMW_OBJECT_OPINION_TYPES — maps opinion types to specific EBS objects (
aoot). - AMW_OPINION_TYPES_B — opinion type definitions (
aot). - FND_OBJECTS — supplies the object name (
fo). - AMW_OPINION_VALUES_B / AMW_OPINION_VALUES_TL — value codes and language translations (
aovb,aovtl). - AMW_OPINION_DETAILS and AMW_OPINION_COMPONTS_B — used in a correlated subquery to restrict the view to the 'OVERALL' opinion component.
- PER_ALL_PEOPLE_F and FND_USER — resolve the author name (
papf,fu). - AMW_OPINION_VALUE_CODES — referenced in scalar subqueries to resolve attachment and image file defaults.
Key Columns
OPINION_SET_ID,OPINION_ID— primary identifiers for the opinion and its set.OBJECT_OPINION_TYPE_ID,OBJECT_NAME,OPINION_TYPE_CODE— identify what object the opinion is about and the type of opinion.PK1_VALUEthroughPK8_VALUE— flexible key segments identifying the specific object instance.PARTY_ID— the party associated with the opinion.AUDIT_RESULT/AUDIT_RESULT_CODE— the translated and code-based opinion value.AUDIT_RESULT_IMAGE_ID,AUDIT_RESULT_IMAGE_NAME— image reference resolved only when the profile option is set to IMAGE for the 'EFFECTIVE' code.AUTHOR,AUTHORED_BY,AUTHORED_DATE— the person who recorded the opinion.- Standard WHO columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE, plusSECURITY_GROUP_IDandOBJECT_VERSION_NUMBER.
Common Use Cases and Queries
Typical usages include audit-result reports, approval workflow summaries, and integrations that need a display-ready opinion value. A basic query filtering by object and date:
SELECT opinion_id, object_name, opinion_type_code, audit_result, author, authored_date FROM apps.amw_opinions_v WHERE object_name = 'MY_OBJECT' AND trunc(authored_date) >= trunc(sysdate)-30;
To surface image references for graphical display:
SELECT opinion_id, audit_result, audit_result_image_name FROM apps.amw_opinions_v WHERE opinion_type_code = 'MY_TYPE';
Because the view respects the AMW_OPINION_DISPLAY_OPTION profile setting, callers should confirm whether the target environment is configured for image or text output before relying on image columns.
-
VIEW: APPS.AMW_OPINIONS_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 ,
-
VIEW: APPS.AMW_OPINIONS_LOG_V
12.1.1
-
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 ,
-
TABLE: AMW.AMW_OPINION_VALUE_CODES
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_OPINION_VALUE_CODES, object_name:AMW_OPINION_VALUE_CODES, status:VALID,
-
APPS.AMW_OPINION_VALUE_CODES_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_OPINION_VALUE_CODES_PKG
12.1.1
-
APPS.AMW_OPINION_VALUE_CODES_PKG dependencies on AMW_OPINION_VALUE_CODES
12.1.1
-
APPS.AMW_OPINION_VALUE_CODES_PKG dependencies on AMW_OPINION_VALUE_CODES_PKG
12.1.1
-
APPS.AMW_OPINION_VALUE_CODES_PKG dependencies on FND_LOAD_UTIL
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 ,