Search Results ap_tl
Overview
APPS.AMW_LATEST_REV_ORG_V is a multilingual (language-resolved) database view owned by the APPS schema and registered under the FND Design Data reference AMW.AMW_LATEST_REV_ORG_V. Its documented purpose is to expose all latest revisions of organization processes within the Oracle E-Business Suite environment, specifically in support of the Enterprise Risk and Compliance Management (ETRM) modules delivered in releases 12.1.1 and 12.2.2. Rather than requiring report authors and integrators to resolve revision history manually, the view presents the most current revision of each process-organization combination, making it suitable for dashboards, compliance reporting, and downstream interfaces.
The view carries a status of VALID. Because it is described as a language-resolved view, its DISPLAY_NAME and DESCRIPTION values are returned in the session's current language, allowing multilingual deployments to present localized process names and descriptions without additional translation logic in the calling application.
Underlying Base Objects
The ETRM documentation metadata for this view does not enumerate specific referenced base objects; the "Referenced base objects" section is recorded as none documented. In practice, the view is constructed over the ETRM process and process-organization revision tables and related risk and control count aggregations. The prefix AMW corresponds to the application module for enterprise risk and compliance, and the naming convention indicates a join between the process revision entity and the organization assignment entity, filtered to return only the latest revision per organization.
Because the documented column set is complete and stable, consumers should treat the view as the supported access path and avoid querying the underlying revision tables directly, as internal joins and latest-revision filtering are encapsulated within the view definition.
Key Columns
- PROCESS_ORGANIZATION_ID – Unique identifier for the process-organization association; the safest primary key for joining and de-duplication.
- PROCESS_ID / PROCESS_ORG_REV_ID / RL_PROCESS_REV_ID – Identifiers linking the row to the process definition, the process-organization revision, and the related revision line respectively.
- PROCESS_CATEGORY_CODE – The column of interest in this article; a 30-character code classifying the process category, useful for filtering and grouping compliance processes.
- PROCESS_CODE, PROCESS_TYPE, REVISION_NUMBER – Descriptive and versioning attributes of the process.
- REVISION_NUMBER – The revision sequence for the returned latest revision.
- DISPLAY_NAME / DESCRIPTION – Translatable process name and text, resolved to the session language.
- RISK_COUNT / CONTROL_COUNT – Aggregated counts of risks and controls associated with the organization process.
- RISK_CATEGORY – Category classification for associated risk.
- APPROVAL_STATUS, CERTIFICATION_STATUS, LAST_AUDIT_STATUS – Lifecycle statuses for approval, certification, and audit activities.
- LAST_CERTIFICATION_DATE, LAST_AUDIT_DATE, NEXT_AUDIT_DATE – Key dates for compliance tracking.
- STANDARD_PROCESS_FLAG, SIGNIFICANT_PROCESS_FLAG, STANDARD_VARIATION – Flags identifying standard and significant processes and any variation.
- START_DATE, END_DATE, APPROVAL_DATE, APPROVAL_END_DATE, DELETION_DATE – Effective dating and lifecycle control columns.
- ORGANIZATION_ID – The organization to which the process revision is assigned.
- CONTROL_ACTIVITY_TYPE – Classification of the control activity.
Common Use Cases and Queries
Typical use cases include compliance status reporting, audit scheduling, and organization-level risk and control summaries. Because the view already resolves to the latest revision, reports do not need MAX(REVISION_NUMBER) logic.
Processes by category for a given organization:
SELECT process_code, process_category_code, display_name, revision_number FROM apps.amw_latest_rev_org_v WHERE organization_id = :org_id AND process_category_code = :category_code ORDER BY display_name;
Compliance status summary per category:
SELECT process_category_code,
COUNT(*) AS process_count,
SUM(risk_count) AS total_risks,
SUM(control_count) AS total_controls
FROM apps.amw_latest_rev_org_v
WHERE significant_process_flag = 'Y'
GROUP BY process_category_code;
Upcoming audits by organization and category:
SELECT process_code, display_name, last_audit_status, next_audit_date FROM apps.amw_latest_rev_org_v WHERE next_audit_date IS NOT NULL AND next_audit_date <= SYSDATE + 30 ORDER BY next_audit_date;
-
VIEW: APPS.AMW_LATEST_REV_ORG_V
12.1.1
-
VIEW: APPS.AMW_CURR_APPROVED_REV_ORG_V
12.1.1
-
VIEW: APPS.AMW_INACTIVE_REV_ORG_V
12.1.1
-
VIEW: APPS.AMW_LATEST_REVISIONS_V
12.1.1
-
VIEW: APPS.AMW_INACTIVE_REVISIONS_V
12.1.1
-
View: AMW_INACTIVE_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_INACTIVE_REV_ORG_V, object_name:AMW_INACTIVE_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for end dated organization process revisions , implementation_dba_data: APPS.AMW_INACTIVE_REV_ORG_V ,
-
VIEW: APPS.AMW_CURRENT_APPRVD_REV_V
12.1.1
-
VIEW: APPS.AMW_DELETED_REVISIONS_V
12.1.1
-
VIEW: APPS.AMW_PROCESS_VL
12.1.1
-
View: AMW_CURR_APPROVED_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for current approved organization process revisions , implementation_dba_data: Not implemented in this database ,
-
View: AMW_INACTIVE_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for end dated organization process revisions , implementation_dba_data: Not implemented in this database ,
-
View: AMW_CURRENT_APPRVD_REV_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for current approved process revisions. , implementation_dba_data: Not implemented in this database ,
-
View: AMW_LATEST_REVISIONS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for latest revisions of risk library processes , implementation_dba_data: Not implemented in this database ,
-
View: AMW_PROCESS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for risk library process , implementation_dba_data: Not implemented in this database ,
-
View: AMW_CURR_APPROVED_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APPROVED_REV_ORG_V, object_name:AMW_CURR_APPROVED_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for current approved organization process revisions , implementation_dba_data: APPS.AMW_CURR_APPROVED_REV_ORG_V ,
-
View: AMW_LATEST_REV_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_REV_ORG_V, object_name:AMW_LATEST_REV_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for all the latest revisions of organization processes. , implementation_dba_data: APPS.AMW_LATEST_REV_ORG_V ,
-
View: AMW_CURRENT_APPRVD_REV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURRENT_APPRVD_REV_V, object_name:AMW_CURRENT_APPRVD_REV_V, status:VALID, product: AMW - Internal Controls Manager , description: View for current approved process revisions. , implementation_dba_data: APPS.AMW_CURRENT_APPRVD_REV_V ,
-
View: AMW_DELETED_REVISIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_DELETED_REVISIONS_V, object_name:AMW_DELETED_REVISIONS_V, status:VALID, product: AMW - Internal Controls Manager , description: View for all the deleted revisions of risk library processes. , implementation_dba_data: APPS.AMW_DELETED_REVISIONS_V ,
-
View: AMW_INACTIVE_REVISIONS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for end dated process revisions. , implementation_dba_data: Not implemented in this database ,
-
View: AMW_LATEST_REV_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for all the latest revisions of organization processes. , implementation_dba_data: Not implemented in this database ,
-
View: AMW_INACTIVE_REVISIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_INACTIVE_REVISIONS_V, object_name:AMW_INACTIVE_REVISIONS_V, status:VALID, product: AMW - Internal Controls Manager , description: View for end dated process revisions. , implementation_dba_data: APPS.AMW_INACTIVE_REVISIONS_V ,
-
View: AMW_PROCESS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_VL, object_name:AMW_PROCESS_VL, status:VALID, product: AMW - Internal Controls Manager , description: View for risk library process , implementation_dba_data: APPS.AMW_PROCESS_VL ,
-
View: AMW_LATEST_REVISIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_REVISIONS_V, object_name:AMW_LATEST_REVISIONS_V, status:VALID, product: AMW - Internal Controls Manager , description: View for latest revisions of risk library processes , implementation_dba_data: APPS.AMW_LATEST_REVISIONS_V ,
-
View: AMW_DELETED_REVISIONS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for all the deleted revisions of risk library processes. , implementation_dba_data: Not implemented in this database ,