Search Results sign_off_status_code




Overview

APPS.AMW_AUDIT_PROJECTS_V is a valid, internal Oracle E-Business Suite view owned by the APPS schema. It exposes audit project information maintained within the Oracle Audit Management Workbench (AMW) module, presenting a denormalized, joined representation of audit engagement records alongside their associated Oracle Projects (PA) project definitions. The view carries the FND Design Data identifier AMW.AMW_AUDIT_PROJECTS_V and is registered as an internal view type, meaning it is intended for use by standard Oracle Applications programs rather than for direct customer access. Oracle Corporation explicitly does not support direct reading of applications data through this object outside of standard application code paths.

Because the view consolidates project identity, status, manager assignment, engagement type, sign-off tracking, and scope-change indicators into a single queryable structure, it serves as a reporting and integration bridge between AMW audit engagements and the Oracle Projects foundation. Users searching for scope_changed_flag will find that column in this view, representing whether the audit project scope has been modified from its original definition.

Underlying Base Objects

The view is defined over the following documented base objects:

The join between AMW audit tables and PA_PROJECTS_ALL links audit engagements to the project structure that governs their execution, while PER_ALL_PEOPLE_F resolves audit manager identities. The presence of ORG_ID confirms the view is operating-unit (multi-org) aware, with project data filtered by operating unit context.

Key Columns

Important columns exposed include:

Common Use Cases and Queries

Typical usage involves reporting on audit engagement status, tracking scope changes, and auditing sign-off compliance. A representative query retrieving scope-changed engagements follows:

  • SELECT PROJECT_NUMBER, PROJECT_NAME, AUDIT_MANAGER_NAME, SCOPE_CHANGED_FLAG, AUDIT_PROJECT_STATUS FROM APPS.AMW_AUDIT_PROJECTS_V WHERE SCOPE_CHANGED_FLAG = 'Y' AND ORG_ID = :org_id;

Additional scenarios include identifying projects pending sign-off (SIGN_OFF_REQUIRED_FLAG = 'Y' with an unresolved SIGN_OFF_STATUS_CODE), isolating template projects (TEMPLATE_FLAG = 'Y'), and analyzing engagements by role or manager using the joined person data. Because the view is unsupported for direct access, these patterns should generally be embedded within or derived from standard Oracle Applications programs rather than executed standalone in production.