Search Results sign_off_status_code




Overview

AMW_AUDIT_PROJECTS_V is a seeded Oracle E-Business Suite view owned by the APPS schema, defined in the AMW – Internal Controls Manager product. In Oracle EBS 12.1.1 and 12.2.2 this view exposes audit engagement (audit project) header information in a flattened, reporting-friendly form. Because it resolves lookup codes to their meanings and derives the audit manager name through correlated subqueries, it is the standard presentation layer for engagement-level data used by ICM audit workbenches, dashboards, and management reporting. The view carries a VALID status and is intended for query access only; no DML should be issued against it.

Underlying Base Objects

The view text demonstrates that it is defined primarily over two tables: AMW_AUDIT_PROJECTS (aliased AP), the transactional audit engagement header, and AMW_AUDIT_PROJECTS_TL (aliased APT), its translation table holding language-dependent name and description. The view joins AP.AUDIT_PROJECT_ID to APT.AUDIT_PROJECT_ID and restricts APT.LANGUAGE to USERENV('LANG'), so name and description are returned in the session language.

The first branch of the UNION ALL additionally joins AMW_WORK_CATEGORIES_B and AMW_WORK_TYPES_B, requiring CATEGORY_CODE = 'ENGAGEMENT' and linking AP.ENGAGEMENT_TYPE_ID to TB.WORK_TYPE_ID, and filters on AP.PROJECT_ID IS NULL — that is, engagements not yet linked to a Projects (PA) project. The second branch handles engagements that have an associated PA project, pulling the project number (SEGMENT1), name, description, dates, and template/created-from attributes from PA_PROJECTS_ALL and resolving the project manager via PA_PROJECT_PARTIES_UTILS. Lookup meanings come from AMW_LOOKUPS, and the audit manager name is resolved from PER_ALL_PEOPLE_F for the current effective date range.

Key Columns

Common Use Cases and Queries

Typical uses include listing active engagements, reporting sign-off status, and locating engagements by manager. Because the view returns a UNION ALL, consumers should be aware that an engagement may appear in one branch only, depending on whether a PA project is linked.

Example: list engagements with their status meanings and managers.

SELECT audit_project_id,
       name,
       project_number,
       audit_project_status,
       audit_manager_person_id,
       start_date,
       completion_date
FROM   apps.amw_audit_projects_v
WHERE  audit_project_status = 'IN_PROGRESS'
ORDER  BY start_date;

Example: identify engagements still pending sign-off.

SELECT audit_project_id, name, sign_off_status, sign_off_required_flag
FROM   apps.amw_audit_projects_v
WHERE  sign_off_required_flag = 'Y'
AND    sign_off_status IS NULL;

These queries should be executed with the APPS schema or an appropriate responsibility that grants SELECT on the view, and results filtered by the relevant operating unit or client context where multi-org security applies.