Search Results amw_process_organization_vl
Overview
AMW_PROCESS_ORGANIZATION_VL is a language-specific (VL) view within the AMW — Internal Controls Manager product, a module now classified as obsolete in Oracle E-Business Suite 12.1.1 and 12.2.2. The view presents complete organization process entities by combining translated, language-specific display values with the operational and control data held against each organization process. Its purpose is to expose a denormalized, presentation-ready row for each process revision belonging to a specific organization, so that forms, reports, and integration interfaces can retrieve the human-readable process name and description alongside the full set of process attributes without performing their own joins to the translation table.
The view is documented in the ETRM metadata with the note that it is not implemented in the reference database, meaning the definition is provided for informational and troubleshooting purposes rather than as an active object in every environment. The description text in the metadata refers to AMW_PROCESS_NAMES_VL; this appears to be a naming inconsistency in the source documentation, since the column list and view text clearly describe an organization process entity rather than a simple process name lookup.
Underlying Base Objects
The view text joins three objects:
- AMW_PROCESS_ORGANIZATION AOP — the primary driving table, supplying the non-displayed process organization data such as process identifiers, organization, revision, approval, and control counts.
- AMW_PROCESS AP — joined via an outer join on AP.PROCESS_REV_ID(+) = AOP.RL_PROCESS_REV_ID, providing the standard process indicator.
- AMW_PROCESS_NAMES_TL APTL — joined on APTL.PROCESS_REV_ID = AOP.RL_PROCESS_REV_ID with a language restriction of APTL.LANGUAGE = USERENV('LANG'), supplying the translated display name and description.
The metadata records no other documented base objects, and the view definition itself is the authoritative source for the join relationships above. An outer join between AMW_PROCESS_ORGANIZATION and AMW_PROCESS allows organization process rows to be returned even when a matching process revision does not exist, while the language join filters rows to the session language.
Key Columns
- DISPLAY_NAME, DESCRIPTION — the translated name and description sourced from AMW_PROCESS_NAMES_TL for the session language.
- PROCESS_ID, ORGANIZATION_ID, PROCESS_CODE, REVISION_NUMBER — identifiers establishing which process, in which organization, at which revision the row represents.
- PROCESS_ORG_REV_ID, RL_PROCESS_REV_ID — surrogate and revision-level keys linking the organization process to its process master and translation rows.
- APPROVAL_STATUS, APPROVAL_DATE, APPROVAL_END_DATE — approval lifecycle values for the process revision.
- START_DATE, END_DATE, DELETION_DATE — effective dating and soft-deletion indicators.
- CONTROL_COUNT, RISK_COUNT, CONTROL_COUNT_LATEST, RISK_COUNT_LATEST — aggregate counts of associated controls and risks, with "latest" variants reflecting current revision figures.
- SIGNIFICANT_PROCESS_FLAG, STANDARD_PROCESS_FLAG, STANDARD_VARIATION, CLASSIFICATION, PROCESS_CATEGORY_CODE — classification and scoping attributes used in internal control assessments.
- PROCESS_OWNER_ID, FINANCE_OWNER_ID, APPLICATION_OWNER_ID — owner references for the process and its finance and application responsibilities.
- CERTIFICATION_STATUS, PROCESS_TYPE, CONTROL_ACTIVITY_TYPE — certification and categorization state.
- Audit columns and ATTRIBUTE1–ATTRIBUTE15 — WHO columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN), concurrent program context (REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE), descriptive flexfield segments, SECURITY_GROUP_ID, and OBJECT_VERSION_NUMBER for optimistic locking.
Common Use Cases and Queries
The view is typically used to produce organization-scoped process listings that display translated names, to feed control and risk summary reports, and to support integration extracts that require owner, approval, and count data in a single query. A representative query retrieves significant processes for an organization with their control counts:
SELECT display_name, process_code, revision_number, approval_status, certification_status, risk_count_latest, control_count_latest FROM amw_process_organization_vl WHERE organization_id = :org_id AND significant_process_flag = 'Y' ORDER BY display_name;
A second pattern lists all processes for which the standard process indicator is set, using the outer-joined AMW_PROCESS data:
SELECT p.organization_id, p.display_name, p.standard_variation, p.control_count, p.risk_count FROM amw_process_organization_vl p WHERE p.standard_process_flag = 'Y' AND p.end_date IS NULL AND p.deletion_date IS NULL;
Because the view enforces APTL.LANGUAGE = USERENV('LANG'), queries return names and descriptions in the language of the connected session. Reports intended for multilingual audiences should therefore either execute under the desired language context or join directly to AMW_PROCESS_NAMES_TL when a specific language must be forced regardless of session settings. Given the obsolete status of the AMW module, these queries should be treated as migration reference material for environments transitioning away from Internal Controls Manager.
-
View: AMW_PROCESS_ORGANIZATION_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: AMW_PROCESS_NAMES_VL is a view that joins the translated, languagespecific values from AMW_PROCESS_NAMES_TL with the non-displayeddata from AMW_ORGANIZATION_PROCESS to form complete organization process entities. , implementation_dba_data: Not implemented in this database ,
-
View: AMW_PROCESS_ORGANIZATION_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORGANIZATION_VL, object_name:AMW_PROCESS_ORGANIZATION_VL, status:VALID, product: AMW - Internal Controls Manager , description: AMW_PROCESS_NAMES_VL is a view that joins the translated, languagespecific values from AMW_PROCESS_NAMES_TL with the non-displayeddata from AMW_ORGANIZATION_PROCESS to form complete organization process entities. , implementation_dba_data: APPS.AMW_PROCESS_ORGANIZATION_VL ,
-
VIEW: APPS.AMW_LATEST_HIERARCHY_ORG_V
12.1.1
-
VIEW: APPS.AMW_CURR_APP_HIERARCHY_ORG_V
12.1.1
-
View: AMW_CURR_APP_HIERARCHY_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for approved organizations process hierarchy , implementation_dba_data: Not implemented in this database ,
-
View: AMW_CURR_APP_HIERARCHY_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APP_HIERARCHY_ORG_V, object_name:AMW_CURR_APP_HIERARCHY_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for approved organizations process hierarchy , implementation_dba_data: APPS.AMW_CURR_APP_HIERARCHY_ORG_V ,
-
View: AMW_LATEST_HIERARCHY_ORG_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for organizations process latest hierarchy , implementation_dba_data: Not implemented in this database ,
-
View: AMW_LATEST_HIERARCHY_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_HIERARCHY_ORG_V, object_name:AMW_LATEST_HIERARCHY_ORG_V, status:VALID, product: AMW - Internal Controls Manager , description: View for organizations process latest hierarchy , implementation_dba_data: APPS.AMW_LATEST_HIERARCHY_ORG_V ,
-
PACKAGE: APPS.RCI_ORG_CERT_ETL_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:RCI_ORG_CERT_ETL_PKG, status:VALID,
-
PACKAGE BODY: APPS.RCI_PROC_DETAIL_ETL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RCI_PROC_DETAIL_ETL_PKG, status:VALID,
-
SYNONYM: APPS.AMW_PROCESS_NAMES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_PROCESS_NAMES_TL, status:VALID,
-
PACKAGE BODY: APPS.RCI_UNMTG_RISKS_ETL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RCI_UNMTG_RISKS_ETL_PKG, status:VALID,
-
PACKAGE BODY: APPS.RCI_ORG_DFCY_ETL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RCI_ORG_DFCY_ETL_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMW_CREATE_LINES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_CREATE_LINES_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.AMW_PROCESS_ORGANIZATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_PROCESS_ORGANIZATION, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.AMW_PROCESS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_PROCESS, status:VALID,
-
APPS.RCI_PROC_DETAIL_ETL_PKG SQL Statements
12.1.1
-
APPS.RCI_UNMTG_RISKS_ETL_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.RCI_ORG_CERT_ETL_PKG
12.1.1
-
VIEW: APPS.AMW_CURR_APP_HIERARCHY_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_CURR_APP_HIERARCHY_ORG_V, object_name:AMW_CURR_APP_HIERARCHY_ORG_V, status:VALID,
-
VIEW: APPS.AMW_PROCESS_ORGANIZATION_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROCESS_ORGANIZATION_VL, object_name:AMW_PROCESS_ORGANIZATION_VL, status:VALID,
-
VIEW: APPS.AMW_LATEST_HIERARCHY_ORG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_LATEST_HIERARCHY_ORG_V, object_name:AMW_LATEST_HIERARCHY_ORG_V, status:VALID,
-
APPS.RCI_CTRL_DETAIL_ETL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.RCI_PROC_DETAIL_ETL_PKG
12.1.1
-
PACKAGE BODY: APPS.RCI_UNMTG_RISKS_ETL_PKG
12.1.1
-
APPS.RCI_ORG_DFCY_ETL_PKG SQL Statements
12.1.1
-
APPS.RCI_UNMTG_RISKS_ETL_PKG dependencies on AMW_PROCESS_ORGANIZATION_VL
12.1.1
-
APPS.AMW_CREATE_LINES_PKG dependencies on AMW_PROCESS_ORGANIZATION_VL
12.1.1
-
APPS.RCI_PROC_DETAIL_ETL_PKG dependencies on AMW_PROCESS_ORGANIZATION_VL
12.1.1
-
APPS.RCI_ORG_DFCY_ETL_PKG dependencies on AMW_PROCESS_ORGANIZATION_VL
12.1.1
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_PROCESS_ORGANIZATION_VL
12.1.1
-
PACKAGE BODY: APPS.RCI_CTRL_DETAIL_ETL_PKG
12.1.1
-
APPS.AMW_CREATE_LINES_PKG SQL Statements
12.1.1
-
APPS.RCI_ORG_CERT_SUMM_PKG SQL Statements
12.1.1
-
APPS.RCI_PROC_CERT_SUMM_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.RCI_ORG_DFCY_ETL_PKG
12.1.1
-
APPS.RCI_PROC_DETAIL_ETL_PKG dependencies on AMW_OPINIONS_V
12.1.1
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_OPINIONS_LOG_V
12.1.1
-
APPS.RCI_PROC_DETAIL_ETL_PKG dependencies on HR_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.RCI_PROC_DETAIL_ETL_PKG dependencies on AMW_OPINIONS_LOG_V
12.1.1
-
APPS.RCI_UNMTG_RISKS_ETL_PKG dependencies on AMW_RISKS_ALL_VL
12.1.1
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_FIN_PROC_CERT_RELAN
12.1.1
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on HR_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.RCI_CTRL_DETAIL_ETL_PKG dependencies on AMW_CERTIFICATION_VL
12.1.1
-
APPS.RCI_ORG_CERT_ETL_PKG dependencies on AMW_FIN_PROCESS_EVAL_SUM
12.1.1
-
APPS.RCI_UNMTG_RISKS_ETL_PKG dependencies on HR_ALL_ORGANIZATION_UNITS
12.1.1
-
APPS.RCI_UNMTG_RISKS_ETL_PKG dependencies on AMW_OPINIONS_LOG_V
12.1.1