Search Results control_location
Overview
AMW_CONTROLS_ALL_VL is a translated (VL) view owned by the APPS schema within the Oracle E-Business Suite Internal Controls Manager (AMW) module. It presents the complete definition of a Control entity by combining the language-independent attributes stored in the base table AMW_CONTROLS_B with the language-specific, translated descriptive text held in AMW_CONTROLS_TL. The view therefore exposes a single, fully resolved row per control (and control revision) in the session's current language, hiding the underlying translation mechanism from the consumer.
Because Internal Controls Manager supports multiple installed languages, the "TL" table stores translatable columns such as the control name and description per language, while the "_B" table stores the structural, non-translated attributes. The "_VL" view is the canonical reporting and integration surface that fuses the two, and is the object that forms and OA Framework pages, concurrent programs, and interfaces reference when a complete, readable control record is required. This makes the view central to control documentation, audit reporting, and downstream data extraction.
Underlying Base Objects
The view is defined over two base tables in the AMW schema: AMW_CONTROLS_B (non-translated data) and AMW_CONTROLS_TL (translated, language-specific values). A join correlates the language-independent key columns of the "_B" table with the corresponding translated rows of the "_TL" table for the current language, producing one consolidated row per control revision.
The view text aliases the base tables as B and T. It carries forward all structural columns from B—including CONTROL_ID, CONTROL_REV_ID, the audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN), and the descriptive translation columns from T (NAME, DESCRIPTION, PHYSICAL_EVIDENCE, VERIFICATION_SOURCE_NAME, and related text fields). The documentation does not enumerate separately maintained base objects beyond these, and the ETRM metadata records no additional referenced objects beyond the two tables implied by the view name and text.
Key Columns
- CONTROL_ID / CONTROL_REV_ID: The primary identifier and revision number that uniquely identify a control and its revision; these are the join and lookup keys.
- NAME, DESCRIPTION: Translated control name and narrative description rendered from AMW_CONTROLS_TL in the session language.
- CONTROL_TYPE, CATEGORY, SOURCE: Classification attributes defining how the control is categorized and where it originated.
- PREVENTIVE_CONTROL, DETECTIVE_CONTROL, DISCLOSURE_CONTROL, KEY_MITIGATING: Boolean-style flags indicating the control's nature and significance.
- CONTROL_FREQUENCY, CLASSIFICATION, AUTOMATION_TYPE, CONTROL_LOCATION: Operational attributes describing how and where the control is executed.
- APPROVAL_STATUS, APPROVAL_DATE, REQUESTOR_ID, CURR_APPROVED_FLAG, LATEST_REVISION_FLAG: Workflow and revision-state tracking columns.
- OBJECT_VERSION_NUMBER: Optimistic locking column used by the underlying framework.
- ATTRIBUTE1–ATTRIBUTE15 and ATTRIBUTE_CATEGORY: Descriptive flexfield (DFF) columns for client-specific extensions.
- SECURITY_GROUP_ID, APPLICATION_ID, JOB_ID: Multi-org and concurrent processing context columns.
Common Use Cases and Queries
Typical usage retrieves all current, approved controls for reporting or joins the view to control-test, risk, and organization tables for audit dashboards and extracts. The VL view is generally preferred over querying the base tables directly because it already resolves the translated text.
A simple listing of active controls:
SELECT control_id, control_rev_id, name, description, control_type, classification FROM apps.amw_controls_all_vl WHERE latest_revision_flag = 'Y' ORDER BY name;
Filtering by lifecycle and category:
SELECT control_id, name, approval_status, approval_date FROM apps.amw_controls_all_vl WHERE curr_approved_flag = 'Y' AND category = :p_category;
Joining to a downstream control-test table by key and revision:
SELECT v.name, v.description, t.test_result FROM apps.amw_controls_all_vl v, apps.amw_control_tests t WHERE v.control_id = t.control_id AND v.control_rev_id = t.control_rev_id;
When calling from a multi-language environment, the returned NAME and DESCRIPTION reflect the current session language, so integrations should set NLS appropriately before querying the view.
-
View: AMW_CONTROLS_ALL_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: AMW_CONTROLS_ALL_VL is a view that joins the translated, language specific values from AMW_CONTROLS_TL with the non-displayed data from AMW_CONTROLS_B to form complete Control entities. , implementation_dba_data: Not implemented in this database ,
-
View: AMW_CONTROLS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CONTROLS_ALL_VL, object_name:AMW_CONTROLS_ALL_VL, status:VALID, product: AMW - Internal Controls Manager , description: AMW_CONTROLS_ALL_VL is a view that joins the translated, language specific values from AMW_CONTROLS_TL with the non-displayed data from AMW_CONTROLS_B to form complete Control entities. , implementation_dba_data: APPS.AMW_CONTROLS_ALL_VL ,
-
VIEW: APPS.AMW_CONTROLS_ALL_VL
12.1.1
-
APPS.RCI_CTRL_DETAIL_ETL_PKG SQL Statements
12.1.1
-
TABLE: AMW.RCI_ORG_CERT_CTRLS_F
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.RCI_ORG_CERT_CTRLS_F, object_name:RCI_ORG_CERT_CTRLS_F, status:VALID,
-
VIEW: APPS.AMW_CONTROLS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CONTROLS_ALL_VL, object_name:AMW_CONTROLS_ALL_VL, status:VALID,
-
TABLE: AMW.AMW_CONTROLS_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_CONTROLS_B, object_name:AMW_CONTROLS_B, status:VALID,
-
APPS.AMW_CONTROLS_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.AMW_CONTROL_PVT
12.1.1
-
PACKAGE BODY: APPS.RCI_CTRL_DETAIL_ETL_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_CONTROLS_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_CONTROL_PVT
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 ,