Search Results amw_audit_projects
Overview
AMW_AUDIT_PROJECTS is a core transactional table in the Oracle E-Business Suite module AMW – Internal Controls Manager. It stores the master definition of every audit project managed within the application, serving as the parent record for the objectives, tasks, scope, procedures, and workpapers that constitute an audit engagement. The table resides in the AMW schema and is documented as VALID in both release 12.1.1 and 12.2.2. Its primary key is AMW_AUDIT_PROJECTS_PK, defined on the surrogate column AUDIT_PROJECT_ID.
From a dimensional modeling perspective, the mined foreign-key structure suggests a satellite-leaning classification. The table carries its own surrogate key while bridging outward to a Project Accounting project through PROJECT_ID and to an application security context through SECURITY_GROUP_ID; downstream AMW entities depend on it heavily. This positions AMW_AUDIT_PROJECTS as the central anchor of the audit engagement model rather than a pure reference or bridge table.
Key Information Stored
The documented physical schema contains 39 columns. The most significant include:
- AUDIT_PROJECT_ID — the surrogate primary key and the value carried by all child tables.
- AUDIT_PROJECT_ID (U1 unique index) — documented as AMW_AUDIT_PROJECTS_U1, the unique business-key candidate, though in practice it is the same surrogate column.
- PROJECT_ID — foreign key to PA_PROJECTS_ALL, coupling the audit project to a Project Accounting project number and its costing/structuring attributes.
- PROJECT_NUMBER — the human-readable identifier for the audit project.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, driving row-level access control.
- AUDIT_PROJECT_STATUS — the life-cycle state of the engagement.
- START_DATE and COMPLETION_DATE — the planned or actual execution window.
- ENGAGEMENT_TYPE_ID — classifies the audit (for example, financial, operational, compliance).
- AUDIT_MANAGER_PERSON_ID — the person accountable for the engagement.
- TEMPLATE_FLAG — distinguishes reusable audit project templates from live engagements.
- SIGN_OFF_REQUIRED_FLAG and SIGN_OFF_STATUS — govern the approval and sign-off workflow.
- SCOPE_CHANGED_FLAG — indicates scope revisions made after baseline.
- CREATED_FROM_PROJECT_ID — self-referencing lineage to the source or template project.
- PHASE, ORIGINAL_SYSTEM_SOURCE_CODE, and ORIGINAL_SYSTEM_REFERENCE — phase tracking and legacy/system-of-origin identifiers.
- OBJECT_VERSION_NUMBER and the standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) — concurrency and audit trail.
Common Use Cases and Queries
Typical reporting needs include listing active engagements, aging open audits, reconciling AMW audit projects to Project Accounting, and producing management dashboards that count tasks and scope items per engagement.
A simple listing of live engagements joined to their accounting project:
SELECT a.AUDIT_PROJECT_ID, a.PROJECT_NUMBER, a.AUDIT_PROJECT_STATUS, p.PROJECT_NAME, p.PROJECT_NUMBER AS PA_NUMBER FROM AMW.AMW_AUDIT_PROJECTS a, PA.PA_PROJECTS_ALL p WHERE a.PROJECT_ID = p.PROJECT_ID AND a.TEMPLATE_FLAG = 'N';
Counts of dependent artefacts per engagement:
SELECT t.AUDIT_PROJECT_ID, COUNT(*) FROM AMW.AMW_AUDIT_TASKS_B t GROUP BY t.AUDIT_PROJECT_ID;
Aging report on open audits using START_DATE and COMPLETION_DATE:
SELECT PROJECT_NUMBER, START_DATE, COMPLETION_DATE, SYSDATE - START_DATE AS AGE_DAYS FROM AMW.AMW_AUDIT_PROJECTS WHERE AUDIT_PROJECT_STATUS NOT IN ('CLOSED','CANCELLED');
Sign-off backlog monitoring with SIGN_OFF_REQUIRED_FLAG and SIGN_OFF_STATUS is another frequent request.
Related Objects
The following are the most significant dependents and references of AMW_AUDIT_PROJECTS based on the documented foreign-key relationships:
- PA_PROJECTS_ALL — referenced via AMW_AUDIT_PROJECTS.PROJECT_ID; supplies accounting project definition, naming, and organisational context.
- FND_SECURITY_GROUPS — referenced via AMW_AUDIT_PROJECTS.SECURITY_GROUP_ID; enforces multi-org and row-level security.
- AMW_AUDIT_TASKS_B — references AUDIT_PROJECT_ID; holds the individual audit tasks that constitute an engagement.
- AMW_AUDIT_OBJECTIVES_B — references AUDIT_PROJECT_ID; stores the stated audit objectives.
- AMW_AUDIT_SCOPE_ORGANIZATIONS and AMW_AUDIT_SCOPE_PROCESSES — reference AUDIT_PROJECT_ID; define the organisational units and business processes covered by the engagement.
- AMW_AUDIT_PROCEDURE_INTERFACE — references AUDIT_PROJECT_ID; bridges audit procedures into the engagement.
- AMW_WORK_EXT_B and AMW_WORK_EXT_TL — reference AUDIT_PROJECT_ID; hold workpaper base and translated records.
Together these objects form the audit construction and execution model, with AMW_AUDIT_PROJECTS as the mandatory parent record for every engagement element.
-
Table: AMW_AUDIT_PROJECTS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_PROJECTS, object_name:AMW_AUDIT_PROJECTS, status:VALID, product: AMW - Internal Controls Manager , description: AMW_AUDIT_PROJECTS stores information about audit projects. , implementation_dba_data: AMW.AMW_AUDIT_PROJECTS ,
-
Table: AMW_AUDIT_PROJECTS
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: AMW_AUDIT_PROJECTS stores information about audit projects. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_AUDIT_TASKS_V
12.1.1
-
SYNONYM: APPS.AMW_AUDIT_PROJECTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_AUDIT_PROJECTS, status:VALID,
-
VIEW: APPS.AMW_PROJECT_LISTS_V
12.1.1
-
VIEW: APPS.AMW_AUDIT_PROJECTS_VL
12.1.1
-
VIEW: APPS.AMW_AUDIT_PROJECTS_V
12.1.1
-
View: AMW_PROJECT_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROJECT_LISTS_V, object_name:AMW_PROJECT_LISTS_V, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_PROJECT_LISTS_V ,
-
TABLE: AMW.AMW_AUDIT_PROJECTS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_PROJECTS, object_name:AMW_AUDIT_PROJECTS, status:VALID,
-
APPS.AMW_CM_EVENT_LISTNER_PKG SQL Statements
12.1.1
-
View: AMW_AUDIT_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_TASKS_V, object_name:AMW_AUDIT_TASKS_V, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_AUDIT_TASKS_V ,
-
View: AMW_AUDIT_TASKS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: AMW_AUDIT_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_PROJECTS_V, object_name:AMW_AUDIT_PROJECTS_V, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_AUDIT_PROJECTS_V ,
-
VIEW: APPS.AMW_TEMPLATE_TASKS_V
12.1.1
-
PACKAGE BODY: APPS.AMW_AUDIT_PROJECTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_AUDIT_PROJECTS_PKG, status:VALID,
-
View: AMW_PROJECT_LISTS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: AMW_AUDIT_PROJECTS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.AMW_PROJECT_EVENT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_PROJECT_EVENT_PVT, status:VALID,
-
View: AMW_AUDIT_PROJECTS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: AMW_AUDIT_PROJECTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_PROJECTS_VL, object_name:AMW_AUDIT_PROJECTS_VL, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_AUDIT_PROJECTS_VL ,
-
PACKAGE BODY: APPS.AMW_AUDIT_ENGAGEMENT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_AUDIT_ENGAGEMENT_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMW_SCOPE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_SCOPE_PVT, status:VALID,
-
PACKAGE BODY: APPS.AMW_CM_EVENT_LISTNER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_CM_EVENT_LISTNER_PKG, status:VALID,
-
View: AMW_TEMPLATE_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_TEMPLATE_TASKS_V, object_name:AMW_TEMPLATE_TASKS_V, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_TEMPLATE_TASKS_V ,
-
View: AMW_TEMPLATE_TASKS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.AMW_UTILITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_UTILITY_PVT, status:VALID,
-
VIEW: APPS.AMW_AUDIT_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_TASKS_V, object_name:AMW_AUDIT_TASKS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_BES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_FINSTMT_CERT_BES_PKG, status:VALID,
-
APPS.AMW_AUDIT_PROJECTS_PKG SQL Statements
12.1.1
-
VIEW: APPS.AMW_TEMPLATE_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_TEMPLATE_TASKS_V, object_name:AMW_TEMPLATE_TASKS_V, status:VALID,
-
VIEW: APPS.AMW_PROJECT_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_PROJECT_LISTS_V, object_name:AMW_PROJECT_LISTS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.AMW_PROJECT_EVENT_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMW_AUDIT_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_PROJECTS_V, object_name:AMW_AUDIT_PROJECTS_V, status:VALID,
-
APPS.AMW_FINSTMT_CERT_BES_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_AUDIT_PROJECTS_PKG
12.1.1
-
PACKAGE BODY: APPS.AMW_CM_EVENT_LISTNER_PKG
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT SQL Statements
12.1.1
-
VIEW: APPS.AMW_AUDIT_PROJECTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_PROJECTS_VL, object_name:AMW_AUDIT_PROJECTS_VL, status:VALID,
-
PACKAGE BODY: APPS.AMW_PROJECT_EVENT_PVT
12.1.1
-
Table: PA_PROJECTS_ALL
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECTS_ALL, object_name:PA_PROJECTS_ALL, status:VALID, product: PA - Projects , description: PA_PROJECTS_ALL stores the highest units of work defined in Oracle Projects. , implementation_dba_data: PA.PA_PROJECTS_ALL ,
-
Table: PA_PROJECTS_ALL
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECTS_ALL, object_name:PA_PROJECTS_ALL, status:VALID, product: PA - Projects , description: PA_PROJECTS_ALL stores the highest units of work defined in Oracle Projects. , implementation_dba_data: PA.PA_PROJECTS_ALL ,
-
PACKAGE BODY: APPS.AMW_AUDIT_ENGAGEMENT_PVT
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT dependencies on AMW_AUDIT_PROJECTS
12.1.1
-
PACKAGE BODY: APPS.AMW_FINSTMT_CERT_BES_PKG
12.1.1
-
APPS.AMW_UTILITY_PVT dependencies on AMW_AUDIT_PROJECTS
12.1.1