Search Results engagement_type_id
Overview
APPS.AMW_PROJECT_LISTS_V is a seeded Oracle E-Business Suite view owned by the APPS schema and registered in the application design layer as AMW.AMW_PROJECT_LISTS_V. It exposes a denormalized, read-oriented projection of audit project data maintained by the Oracle Audit Management (AMW) module and correlates that data with project records owned by Oracle Projects. Within EBS 12.1.1 and 12.2.2, the view functions as a reporting and integration surface: it flattens multilingual project names, status lookups, manager identities, and engagement classification attributes into a single row per audit project, sparing downstream consumers from reconstructing the joins themselves.
The view carries a prominent Oracle warning that it is for internal use only and is not supported for direct customer access except through standard Oracle Applications programs. This reflects a general EBS principle: seeded views may be restructured or dropped during patch application, and their column semantics are governed by the owning module rather than by a published interface contract. Nevertheless, the object is widely encountered in custom reports, extracts, and diagnostic queries where consumers accept the stability risk in exchange for convenience.
Underlying Base Objects
Per the ETRM dependency listing, AMW_PROJECT_LISTS_V is defined over the following objects:
- AMW_AUDIT_PROJECTS and AMW_AUDIT_PROJECTS_TL — the audit project header and its translation table, supplying the primary key AUDIT_PROJECT_ID, status, dates, template flag, and language-dependent name and description.
- PA_PROJECTS_ALL — the Oracle Projects project header, contributing PA_PROJECT_ID, PROJECT_NUMBER, PROJECT_NAME, START_DATE, COMPLETION_DATE, and the CREATED_FROM_PROJECT_ID linkage.
- PA_PROJECT_TYPES_ALL — project type definitions, which underpin the ENGAGEMENT_TYPE_ID classification exposed by the view.
- PA_PROJECT_PARTIES_UTILS — a Projects utility used to resolve party (person) assignments.
- PER_ALL_PEOPLE_F — the HR people date-tracked table, resolving AUDIT_MANAGER_PERSON_ID to the formatted AUDIT_MANAGER_NAME.
- AMW_LOOKUPS, AMW_WORK_CATEGORIES_B, and AMW_WORK_TYPES_B — audit lookup and work classification sources used for status and category resolution.
No dependent database objects reference the view, confirming it is a terminal, leaf-level object in the dependency graph.
Key Columns
- AUDIT_PROJECT_ID — primary identifier of the audit project; the view's unique key.
- PA_PROJECT_ID, PROJECT_NUMBER, PROJECT_NAME, DESCRIPTION — the corresponding Oracle Projects identity and descriptive attributes.
- PROJECT_STATUS_CODE / PROJECT_STATUS_NAME — the Projects status and its translated display name.
- AUDIT_MANAGER_PERSON_ID / AUDIT_MANAGER_NAME — the engagement manager and resolved full name.
- AUDIT_PROJECT_STATUS — the AMW-level lifecycle status, distinct from the Oracle Projects status.
- START_DATE, COMPLETION_DATE — engagement scheduling dates.
- TEMPLATE_FLAG, CREATED_FROM_PROJECT_ID, SOURCE_CODE — origin and template indicators for the audit project.
- ENGAGEMENT_TYPE_ID — the classification of the audit engagement, derived from project type configuration. This is the column most frequently used to distinguish engagement categories in reporting and integrations.
- CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard audit stamp columns.
Common Use Cases and Queries
The most common scenario is filtering audit projects by engagement classification, which is why "engagement_type_id" surfaces as a frequent search term:
- Engagement-type reporting:
SELECT PROJECT_NUMBER, PROJECT_NAME, AUDIT_MANAGER_NAME, ENGAGEMENT_TYPE_ID FROM APPS.AMW_PROJECT_LISTS_V WHERE ENGAGEMENT_TYPE_ID = :p_type AND TEMPLATE_FLAG = 'N'; - Active engagement dashboard: filter on
AUDIT_PROJECT_STATUSandCOMPLETION_DATEto list in-flight audits. - Integration extracts: joining
PA_PROJECT_IDback to PA_PROJECTS_ALL or cost/effort facts for reconciliation.
Because the view is unsupported for direct access, production integrations should generally replicate its logic against the documented base tables, using the view definition as a reference template.
-
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_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,
-
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: 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_AUDIT_PROJECTS
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_AUDIT_PROJECTS, object_name:AMW_AUDIT_PROJECTS, 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_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 ,
-
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.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_AUDIT_PROJECTS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT SQL Statements
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT dependencies on AMW_AUDIT_PROJECTS
12.1.1
-
PACKAGE BODY: APPS.AMW_AUDIT_ENGAGEMENT_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 ,