Search Results open_findings
Overview
AMW.AMW_AUDIT_SCOPE_PROCESSES is an Oracle E-Business Suite table within the Application Management Workbench (AMW) schema, which underpins the Audit Management functionality delivered with the GRC (Governance, Risk, and Compliance) module in EBS 12.1.1 and 12.2.2. The table stores summary metrics for each audit process that has been scoped into an engagement, capturing rolling counts of risks, controls, findings, and issues evaluated during the audit lifecycle. It functions as a denormalized aggregation snapshot: rather than deriving these totals dynamically from transactional detail tables, the application persists them here to accelerate dashboards, engagement summaries, and workflow decisions.
Based on the heuristic Data Vault classification mined from the foreign key structure, this object is best modeled as a satellite. It carries descriptive, measurable attributes (counts and evaluation identifiers) tied to a defined business key composed of audit project, organization, process, and process-organization revision. It does not act as a standalone hub or a pure link, because its payload is the quantitative state of an audit scope rather than a relationship between two entities. The presence of standard WHO columns and OBJECT_VERSION_NUMBER confirms it is a transactable, concurrency-controlled application table.
Key Information Stored
All 20 documented columns are physical, but the following carry the substantive business meaning:
- AUDIT_PROJECT_ID — Audit project identifier; joins to AMW_AUDIT_PROJECTS and anchors each row to a specific engagement.
- ORGANIZATION_ID — Organization identifier scoping the audit to an operating unit or entity.
- PROCESS_ID — Process identifier for the business process under audit.
- PROCESS_ORG_REV_ID — Process organization revision identifier, tying the metric row to a specific version of the process definition.
- EVALUATION_OPINION_ID — Evaluation opinion identifier reflecting the assessed outcome for the process.
- RISKS_EVALUATED / TOTAL_RISKS / UNMITIGATED_RISKS — Counts of risks assessed, in scope, and left untreated.
- CONTROLS_EVALUATED / TOTAL_CONTROLS / INEFFECTIVE_CONTROLS — The equivalent control-side metrics.
- OPEN_FINDINGS — Number of open findings, the column most commonly searched by practitioners (the "open_findings" query term).
- OPEN_ISSUES — Number of open issues associated with the process scope.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the framework to prevent concurrent update conflicts.
The composite surrogate candidate for uniqueness is the combination of AUDIT_PROJECT_ID, ORGANIZATION_ID, PROCESS_ID, and PROCESS_ORG_REV_ID; the AMW tablespace APPS_TS_TX_DATA placement confirms it is transactional data, not setup.
Common Use Cases and Queries
The primary use case is audit engagement reporting: listing processes with outstanding open findings, tracking remediation progress, and building engagement scorecards. A typical query retrieves open findings per engagement:
SELECT p.AUDIT_PROJECT_ID, p.PROCESS_ID, p.OPEN_FINDINGS, p.OPEN_ISSUES FROM AMW.AMW_AUDIT_SCOPE_PROCESSES p WHERE p.OPEN_FINDINGS > 0 ORDER BY p.OPEN_FINDINGS DESC;- Risk-versus-control coverage: join TOTAL_RISKS against RISKS_EVALUATED, and TOTAL_CONTROLS against CONTROLS_EVALUATED, to identify processes lagging in testing.
- Engagement rollup: aggregate OPEN_FINDINGS and UNMITIGATED_RISKS by AUDIT_PROJECT_ID for management dashboards.
- Trending: use LAST_UPDATE_DATE and OBJECT_VERSION_NUMBER to detect recent status changes in extract processes.
- Multi-org filtering: constrain by ORGANIZATION_ID for divisional reporting, since SECURITY_GROUP_ID supports hosted/multi-tenant deployments.
Related Objects
The documented foreign keys and dependency metadata tie this table to the following significant objects:
- AMW.AMW_AUDIT_PROJECTS — Parent engagement table; joined on AUDIT_PROJECT_ID (documented FK).
- FND_SECURITY_GROUPS — Joined on SECURITY_GROUP_ID (documented FK) for hosted-environment security partitioning.
- AMW process and risk/control definition tables — Related via PROCESS_ID and PROCESS_ORG_REV_ID to the process master and its revisions.
- AMW findings and issues tables — Source detail records for the OPEN_FINDINGS and OPEN_ISSUES aggregates.
- AMW_AUDIT_SCOPE_* sibling tables — Parallel scope tables (risks, controls, organizations) that share the AUDIT_PROJECT_ID and PROCESS_ORG_REV_ID keys.
- Evaluation opinion tables — Referenced through EVALUATION_OPINION_ID for opinion classification.
No database object is documented as depending on AMW_AUDIT_SCOPE_PROCESSES, indicating it is a leaf fact-style table referenced primarily by reports and concurrent programs rather than by downstream constraints.
-
APPS.AMW_FINSTMT_FINDING_PVT SQL Statements
12.1.1
-
APPS.AMW_ORG_CERT_AGGR_PKG SQL Statements
12.1.1
-
TABLE: AMW.AMW_AUDIT_SCOPE_PROCESSES
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_SCOPE_PROCESSES, object_name:AMW_AUDIT_SCOPE_PROCESSES, status:VALID,
-
VIEW: APPS.AMW_ORG_CERT_EVAL_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_CERT_EVAL_SUM_V, object_name:AMW_ORG_CERT_EVAL_SUM_V, status:VALID,
-
PACKAGE BODY: APPS.AMW_FINSTMT_FINDING_PVT
12.1.1
-
TABLE: AMW.AMW_AUDIT_SCOPE_ORGANIZATIONS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_SCOPE_ORGANIZATIONS, object_name:AMW_AUDIT_SCOPE_ORGANIZATIONS, status:VALID,
-
PACKAGE BODY: APPS.AMW_ORG_CERT_AGGR_PKG
12.1.1
-
TABLE: AMW.AMW_ORG_CERT_AGGR_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_ORG_CERT_AGGR_SUM, object_name:AMW_ORG_CERT_AGGR_SUM, status:VALID,
-
TABLE: AMW.AMW_ORG_CERT_EVAL_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_ORG_CERT_EVAL_SUM, object_name:AMW_ORG_CERT_EVAL_SUM, status:VALID,
-
View: AMW_ORG_CERT_EVAL_SUM_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: view of an organization certification summary table , implementation_dba_data: Not implemented in this database ,
-
View: AMW_ORG_CERT_EVAL_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_ORG_CERT_EVAL_SUM_V, object_name:AMW_ORG_CERT_EVAL_SUM_V, status:VALID, product: AMW - Internal Controls Manager , description: view of an organization certification summary table , implementation_dba_data: APPS.AMW_ORG_CERT_EVAL_SUM_V ,
-
TABLE: AMW.AMW_PROC_CERT_EVAL_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_PROC_CERT_EVAL_SUM, object_name:AMW_PROC_CERT_EVAL_SUM, status:VALID,
-
TABLE: AMW.AMW_FIN_PROCESS_EVAL_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_PROCESS_EVAL_SUM, object_name:AMW_FIN_PROCESS_EVAL_SUM, status:VALID,
-
TABLE: AMW.AMW_FIN_ORG_EVAL_SUM
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_FIN_ORG_EVAL_SUM, object_name:AMW_FIN_ORG_EVAL_SUM, status:VALID,
-
VIEW: APPS.AMW_ORG_CERT_EVAL_SUM_V
12.1.1
-
APPS.AMW_PROJECT_EVENT_PVT SQL Statements
12.1.1
-
APPS.AMW_ORG_CERT_EVAL_SUM_PVT SQL Statements
12.1.1
-
APPS.AMW_PROCESS_CERT_SUMMARY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_PROJECT_EVENT_PVT
12.1.1
-
PACKAGE BODY: APPS.AMW_ORG_CERT_EVAL_SUM_PVT
12.1.1
-
PACKAGE BODY: APPS.AMW_PROCESS_CERT_SUMMARY
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG SQL Statements
12.1.1
-
APPS.AMW_FINSTMT_FINDING_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.AMW_FINSTMT_FINDING_PVT dependencies on AMW_FINDINGS_PKG
12.1.1
-
APPS.AMW_FINSTMT_FINDING_PVT dependencies on AMW_FIN_ORG_EVAL_SUM
12.1.1
-
APPS.AMW_PROCESS_CERT_SUMMARY dependencies on AMW_ORG_CERT_EVAL_SUM
12.1.1
-
APPS.AMW_FINSTMT_FINDING_PVT dependencies on AMW_FIN_PROCESS_EVAL_SUM
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT SQL Statements
12.1.1
-
APPS.AMW_PROCESS_CERT_SUMMARY dependencies on AMW_PROC_CERT_EVAL_SUM
12.1.1
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on AMW_FIN_ORG_EVAL_SUM
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_BES_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_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 ,
-
APPS.AMW_FINSTMT_CERT_PVT dependencies on FND_FILE
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on FND_GLOBAL
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG dependencies on FND_FILE
12.1.1