Search Results rl_process_rev_id




Overview

AMW_CURR_APPROVED_REV_ORG_V is a reporting view within the Oracle E-Business Suite Internal Controls Manager (AMW) module. Its documented purpose is to present the current approved organization process revisions — that is, the set of organization-level process revisions that have completed approval and remain active. The view name encodes its intent precisely: AMW (module), CURR (current), APPROVED (approved revisions only), REV (revision), ORG (organization scope), and _V (view).

In the EBS 12.1.1 and 12.2.2 release context, note that the AMW product is documented as obsolete (Internal Controls Manager has been superseded by later GRC functionality). Consequently, the object may not be implemented in a given database. The ETRM metadata states explicitly: "Not implemented in this database," and lists no documented base objects or owner. In environments where the object persists, it remains useful for reporting and integration over the historical process/organization approval model.

The view's particular relevance to the search term process_category_code is direct: it exposes both PROCESS_CATEGORY_CODE and its translated counterpart PROCESS_CATEGORY as first-class columns, making it a natural source for segmenting approved process revisions by category.

Underlying Base Objects

The view text (as documented) selects from two base objects:

The two are joined on AP_TL.PROCESS_REV_ID = A.RL_PROCESS_REV_ID, with the language restriction AP_TL.LANGUAGE = USERENV('LANG'). The "current approved" filter is enforced in the WHERE clause: A.APPROVAL_DATE IS NOT NULL AND A.APPROVAL_END_DATE IS NULL. This combination returns only revisions that have been approved and have not yet been superseded or closed — the definition of a currently effective approved revision.

Key Columns

Common Use Cases and Queries

Typical scenarios include compliance dashboards, audit planning, and downstream integration where only currently approved revisions are relevant. A common starting query filters by process category:

  • SELECT PROCESS_ORGANIZATION_ID, ORGANIZATION_ID, PROCESS_CODE, PROCESS_CATEGORY_CODE, PROCESS_CATEGORY, APPROVAL_DATE FROM AMW_CURR_APPROVED_REV_ORG_V WHERE PROCESS_CATEGORY_CODE = :category_code;

Other frequent patterns:

  • Locating significant processes for an organization: ... WHERE ORGANIZATION_ID = :org_id AND SIGNIFICANT_PROCESS_FLAG = 'Y';
  • Audit scheduling by next audit date: ... WHERE NEXT_AUDIT_DATE BETWEEN :from AND :to;
  • Control/risk weighting by category: SELECT PROCESS_CATEGORY_CODE, SUM(CONTROL_COUNT), SUM(RISK_COUNT) ... GROUP BY PROCESS_CATEGORY_CODE;

Because the view is defined over an obsolete module and may not be implemented, always verify object existence in the target instance before relying on it.