Search Results audit_project_id
Overview
APPS.AMW_AUDIT_TASKS_V is a read-only database view owned by the APPS schema within Oracle E-Business Suite, documented under FND Design Data metadata as AMW.AMW_AUDIT_TASKS_V. It forms part of the Audit Management Workbench (AMW) family of objects, which supports Oracle's internal audit and engagement tracking functionality. The view presents a denormalized, reporting-friendly projection of audit task records, joining task header data, task translations, audit project context, associated Oracle Projects task definitions, and the person records of assigned task managers.
The object is flagged Oracle Internal Use Only. Oracle Corporation does not support direct data access through this view except when invoked by standard Oracle Applications programs. The view type is classified as Internal, meaning it is not intended as a public, supported interface for external extraction, integration, or custom reporting. Consumers should treat the view as part of the application's internal API surface, referenced by PL/SQL packages such as AMW_AUDIT_ENGAGEMENT_PVT, AMW_SCOPE_PVT, AMW_EXPORT_AUDIT_PROCEDURE_V, and AMW_LOAD_AUDIT_PROCEDURE_DATA. Because of this status, its columns, joins, and semantics may change without notice across patches or releases, including 12.1.1 and 12.2.2.
Underlying Base Objects
According to the documented dependency information, AMW_AUDIT_TASKS_V is defined over the following objects: AMW_AUDIT_PROJECTS, AMW_AUDIT_TASKS_B (the base table holding task definitions), AMW_AUDIT_TASKS_TL (the translation table containing language-specific task attributes such as name and description), PA_PROJECTS_ALL (the Oracle Projects project repository), PA_TASKS (the Oracle Projects task repository), and PER_ALL_PEOPLE_F (the effective-dated person/employee table used to resolve task manager identity).
The join structure therefore marries AMW audit-specific task metadata with the broader Oracle Projects foundation, which supplies project and task identifiers, and with HR person records, which supply the task manager name. The base AMW_AUDIT_TASKS_B and AMW_AUDIT_TASKS_TL tables provide the audit-specific layer, while PA_PROJECTS_ALL and PA_TASKS anchor the records to standard Projects entities through PROJECT_ID and TASK_ID. The inclusion of PER_ALL_PEOPLE_F indicates that task manager names are resolved at query time from the effective-dated person records, which is a common EBS pattern.
Key Columns
The view exposes sixteen columns. The AUDIT_PROJECT_ID column is the user's search term and functions as the audit-side project identifier, distinct from the standard Oracle Projects PROJECT_ID. The PROJECT_ID and TASK_ID columns are the Projects-related foreign keys that link audit records to PA_PROJECTS_ALL and PA_TASKS respectively. TASK_NUMBER, TASK_NAME, and DESCRIPTION carry the human-readable task attributes, with DESCRIPTION at 250 characters. TOP_TASK_ID, LEVEL_ID, and PARENT_TASK_ID express the task hierarchy, enabling reconstruction of WBS-style task trees. TASK_MANAGER_PERSON_ID and TASK_MANAGER_NAME identify the assigned manager, the latter resolved to 240 characters via PER_ALL_PEOPLE_F. START_DATE and COMPLETION_DATE provide scheduling and status milestones, while SOURCE_CODE records the origin of the task record. ORG_ID supports multi-organization (operating unit) partitioning, which is essential for secure and correct filtering in any query.
Common Use Cases and Queries
Because the view consolidates audit tasks with project and person context, typical use is diagnostic or reporting-oriented: enumerating tasks under a given audit project, listing tasks with assigned managers, or exporting audit engagement data via the AMW export procedures. A representative query using the searched column is:
- SELECT AUDIT_PROJECT_ID, PROJECT_ID, TASK_ID, TASK_NUMBER, TASK_NAME, TASK_MANAGER_NAME, START_DATE, COMPLETION_DATE FROM APPS.AMW_AUDIT_TASKS_V WHERE AUDIT_PROJECT_ID = :p_audit_project_id AND ORG_ID = :p_org_id;
- Hierarchical retrieval: SELECT LEVEL_ID, TASK_ID, PARENT_TASK_ID, TOP_TASK_ID, TASK_NAME FROM APPS.AMW_AUDIT_TASKS_V WHERE AUDIT_PROJECT_ID = :p_audit_project_id ORDER BY LEVEL_ID, TASK_NUMBER;
- Manager workload: SELECT TASK_MANAGER_PERSON_ID, TASK_MANAGER_NAME, COUNT(*) FROM APPS.AMW_AUDIT_TASKS_V GROUP BY TASK_MANAGER_PERSON_ID, TASK_MANAGER_NAME;
Given the Internal Use Only designation, these queries should be confined to diagnostic contexts, and any production integration should instead rely on supported Oracle Projects or HR interfaces. Always constrain by ORG_ID and, where applicable, by effective dates to avoid duplicate or cross-organization results.
-
APPS.AMW_PROJECT_EVENT_PVT SQL Statements
12.1.1
-
APPS.AMW_LOAD_AUDIT_PROCEDURE_DATA SQL Statements
12.1.1
-
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,
-
APPS.AMW_CM_EVENT_LISTNER_PKG SQL Statements
12.1.1
-
TABLE: AMW.AMW_AUDIT_PROJECTS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_PROJECTS_TL, object_name:AMW_AUDIT_PROJECTS_TL, 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,
-
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,
-
PACKAGE BODY: APPS.AMW_PROJECT_EVENT_PVT
12.1.1
-
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,
-
Table: AMW_AUDIT_PROJECTS_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Contains name and description for AMW_AUDIT_PROJECTS_B , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_AUDIT_OBJECTIVES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_OBJECTIVES_VL, object_name:AMW_AUDIT_OBJECTIVES_VL, status:VALID,
-
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,
-
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 ,
-
VIEW: APPS.AMW_AUDIT_TASKS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_TASKS_VL, object_name:AMW_AUDIT_TASKS_VL, status:VALID,
-
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,
-
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 ,
-
Table: AMW_AUDIT_PROJECTS_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_PROJECTS_TL, object_name:AMW_AUDIT_PROJECTS_TL, status:VALID, product: AMW - Internal Controls Manager , description: Contains name and description for AMW_AUDIT_PROJECTS_B , implementation_dba_data: AMW.AMW_AUDIT_PROJECTS_TL ,
-
TABLE: AMW.AMW_AUDIT_TASKS_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_TASKS_B, object_name:AMW_AUDIT_TASKS_B, status:VALID,
-
TABLE: AMW.AMW_AUDIT_OBJECTIVES_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_OBJECTIVES_B, object_name:AMW_AUDIT_OBJECTIVES_B, status:VALID,
-
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_LOAD_AUDIT_PROCEDURE_DATA
12.1.1
-
View: AMW_AUDIT_OBJECTIVES_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: AMW_AUDIT_OBJECTIVES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_OBJECTIVES_VL, object_name:AMW_AUDIT_OBJECTIVES_VL, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_AUDIT_OBJECTIVES_VL ,
-
View: AMW_AUDIT_TASKS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_AUDIT_TASKS_VL, object_name:AMW_AUDIT_TASKS_VL, status:VALID, product: AMW - Internal Controls Manager , implementation_dba_data: APPS.AMW_AUDIT_TASKS_VL ,
-
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,
-
TABLE: AMW.AMW_WORK_EXT_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_WORK_EXT_TL, object_name:AMW_WORK_EXT_TL, status:VALID,
-
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 ,
-
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_TASKS_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
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 ,
-
APPS.AMW_AUDIT_PROJECTS_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 ,
-
TABLE: AMW.AMW_AUDIT_PROCEDURE_INTERFACE
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_PROCEDURE_INTERFACE, object_name:AMW_AUDIT_PROCEDURE_INTERFACE, status:VALID,
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT SQL Statements
12.1.1
-
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: 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 ,
-
VIEW: APPS.AMW_WORK_EXT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WORK_EXT_VL, object_name:AMW_WORK_EXT_VL, status:VALID,
-
PACKAGE BODY: APPS.AMW_AUDIT_PROJECTS_PKG
12.1.1
-
APPS.AMW_SCOPE_PVT SQL Statements
12.1.1
-
APPS.AMW_FINSTMT_CERT_BES_PKG SQL Statements
12.1.1
-
TABLE: AMW.AMW_WORK_EXT_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_WORK_EXT_B, object_name:AMW_WORK_EXT_B, status:VALID,
-
PACKAGE BODY: APPS.AMW_CM_EVENT_LISTNER_PKG
12.1.1
-
View: AMW_WORK_EXT_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Extensible attributes view for Work types , implementation_dba_data: Not implemented in this database ,
-
View: AMW_WORK_EXT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WORK_EXT_VL, object_name:AMW_WORK_EXT_VL, status:VALID, product: AMW - Internal Controls Manager , description: Extensible attributes view for Work types , implementation_dba_data: APPS.AMW_WORK_EXT_VL ,
-
PACKAGE BODY: APPS.AMW_AUDIT_ENGAGEMENT_PVT
12.1.1
-
PACKAGE BODY: APPS.AMW_SCOPE_PVT
12.1.1