Search Results process_category_code
Overview
AMW_INACTIVE_REV_ORG_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the AMW – Internal Controls Manager product family. Its documented purpose is to expose end-dated (inactive) process revisions associated with an organization, allowing implementers and auditors to query historical—rather than currently effective—revision records without filtering the full transaction tables manually.
The view is defined over two base objects: AMW_PROCESS_ORGANIZATION and AMW_PROCESS_NAMES_TL. It is a pure query object—no DML is supported—and is typically consumed by audit reporting, compliance dashboards, and custom extracts that must distinguish retired process revisions from active ones. The object name itself references the "inactive" scope, which is enforced through the WHERE clause rather than through a dedicated column.
The view status is documented as VALID, and it is exposed in both 12.1.1 and 12.2.2 as a translated view (the _TL suffix on the joined table indicates multilingual support).
Underlying Base Objects
Two AMW tables form the data foundation:
- AMW_PROCESS_ORGANIZATION (aliased A) — the primary table, holding the process/organization revision records, counts, statuses, and date fields.
- AMW_PROCESS_NAMES_TL (aliased AP_TL) — the translated names table supplying DISPLAY_NAME and DESCRIPTION, joined on PROCESS_REV_ID.
The join condition is AP_TL.PROCESS_REV_ID = A.RL_PROCESS_REV_ID combined with AP_TL.LANGUAGE = USERENV('LANG'), so display text is returned for the session language. The view is restricted to inactive revisions via three NOT NULL predicates: A.APPROVAL_END_DATE IS NOT NULL, A.APPROVAL_DATE IS NOT NULL, and A.END_DATE IS NOT NULL. Only revisions that have both been approved and subsequently end-dated appear, which is what qualifies them as inactive.
Key Columns
The view exposes thirty columns. The most relevant include:
- PROCESS_ORG_REV_ID — the process-organization revision identifier, the key users search for.
- RL_PROCESS_REV_ID — the revision key used to join to the translated names table.
- PROCESS_ORGANIZATION_ID, PROCESS_ID, ORGANIZATION_ID — organization and process keys.
- DISPLAY_NAME, DESCRIPTION — translated process name and description.
- START_DATE, END_DATE, APPROVAL_DATE, APPROVAL_END_DATE, DELETION_DATE — revision lifecycle dates.
- CONTROL_COUNT, RISK_COUNT — counts of associated controls and risks.
- APPROVAL_STATUS, CERTIFICATION_STATUS, LAST_AUDIT_STATUS — workflow states.
- LAST_CERTIFICATION_DATE, LAST_AUDIT_DATE, NEXT_AUDIT_DATE — certification and audit scheduling fields.
- PROCESS_CATEGORY_CODE, PROCESS_CATEGORY, PROCESS_TYPE, RISK_CATEGORY, CONTROL_ACTIVITY_TYPE — classification fields.
- STANDARD_PROCESS_FLAG, SIGNIFICANT_PROCESS_FLAG, STANDARD_VARIATION, REVISION_NUMBER, PROCESS_CODE — descriptive and structural attributes.
Common Use Cases and Queries
Typical scenarios include auditing retired revisions, reconciling historical control coverage, and building reports of processes that lapsed by end date.
SELECT process_org_rev_id, process_code, display_name,
revision_number, start_date, end_date, approval_end_date
FROM apps.amw_inactive_rev_org_v
WHERE organization_id = :org_id
AND end_date >= :from_date
ORDER BY end_date DESC;
To count inactive revisions per process:
SELECT process_code, COUNT(*) inactive_revisions FROM apps.amw_inactive_rev_org_v GROUP BY process_code;
Because the view joins the translated names table, ensure the reporting session's LANGUAGE is set correctly; otherwise display text may return null.
-
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: 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_PROCESS_ORG_BASICINFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORG_BASICINFO_V, object_name:AMW_PROCESS_ORG_BASICINFO_V, status:VALID, product: AMW - Internal Controls Manager , description: This view returns Basic information about Process Organization , implementation_dba_data: APPS.AMW_PROCESS_ORG_BASICINFO_V ,