Search Results amw_work_types_b
Overview
AMW_WORK_TYPES_B is a core configuration table in the Oracle E-Business Suite module AMW — Internal Controls Manager (ICM). It stores the definition of work types, which are the operational classifications used throughout ICM to categorize and govern the various kinds of work items, audits, assessments, and remediation activities that flow through the controls and compliance lifecycle. In Oracle EBS 12.1.1 and 12.2.2, the table resides in the AMW schema and is registered as a valid, seeded object maintained by the application.
From a Data Vault modeling perspective, the ETRM metadata classifies this object heuristically as a standalone structure. That classification suggests the table behaves as a hub-like reference entity: it holds the durable business identity of each work type and is not a transaction link or a dependent satellite. Because the table carries descriptive and attribute columns alongside its identity key, a strict Data Vault implementation would separate the hub (work type identity) from the satellite (descriptive attributes such as dates, flags, and descriptive flexfields). The standalone designation indicates that no upstream dependency chain is modelled for it within this documentation set.
Key Information Stored
The table contains 33 documented columns. The most significant are:
- WORK_TYPE_ID — surrogate primary key, enforced by constraint AMW_WORK_TYPES_B_PK. This is the internal identifier referenced by dependent ICM entities.
- WORK_TYPE_CODE — the human-readable business key used in user interfaces, reports, and integrations. This is the primary business-key candidate for the work type.
- START_DATE / END_DATE — effective-dating columns defining the active life of the work type definition.
- CATEGORY_ID — foreign reference to the category that groups this work type for reporting and filtering.
- PROJECT_TYPE_ID — associates the work type with a project type, linking ICM configuration to project-centric processing.
- DEFAULT_TYPE_FLAG — indicates whether this work type is the default for its category or process.
- NUMBER_PREFIX and AUTO_NUMBERING_METHOD — control how work items of this type are automatically numbered (prefix text and numbering algorithm).
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, enabling multi-tenant style data segregation across operating units or security partitions.
- OBJECT_ID and OBJECT_VERSION_NUMBER — support the OAF/BC4J object model, providing the row identifier and optimistic-locking version used by the middle tier.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard Oracle descriptive flexfield (DFF) columns, allowing customer-specific extensions without schema changes.
- Audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) — the standard "who/when" stamping present on nearly all EBS transaction tables.
Common Use Cases and Queries
Typical usage centers on configuration reporting, validation of setup completeness, and lookups that translate WORK_TYPE_ID into WORK_TYPE_CODE for downstream reports. A common pattern joins the table to FND_SECURITY_GROUPS to confirm the security context of each work type:
- Listing active work types: SELECT work_type_id, work_type_code FROM amw_work_types_b WHERE TRUNC(SYSDATE) BETWEEN start_date AND NVL(end_date, TRUNC(SYSDATE)+1);
- Resolving the default work type per category: SELECT category_id, work_type_id, work_type_code FROM amw_work_types_b WHERE default_type_flag = 'Y';
- Checking numbering configuration: SELECT work_type_code, number_prefix, auto_numbering_method FROM amw_work_types_b ORDER BY work_type_code;
- Security-scoped extracts: SELECT a.work_type_code, s.security_group_name FROM amw_work_types_b a, fnd_security_groups s WHERE a.security_group_id = s.security_group_id;
- Flexfield-aware reporting: SELECT work_type_code, attribute_category, attribute1 FROM amw_work_types_b;
Because row volume is normally small and largely static, these queries are inexpensive and are frequently embedded in BI Publisher reports, OTBI extracts, and setup validation scripts during implementations and upgrades.
Related Objects
The most significant related objects follow from the documented key and foreign-key relationships:
- AMW_WORK_TYPES_B_PK — the primary-key constraint on WORK_TYPE_ID, referenced by child tables throughout ICM.
- FND_SECURITY_GROUPS — referenced through SECURITY_GROUP_ID; the standard EBS security partition definition table.
- AMW_CATEGORIES (via CATEGORY_ID) — the assumed parent of the work-type grouping, though not listed as a documented FK here.
- AMW_PROJECT_TYPES or equivalent project-type reference (via PROJECT_TYPE_ID) — links work types to project configuration.
- AMW_WORK_TYPES_TL — where multilanguage installations exist, the translation table supplying user-facing names and descriptions for each work type, joined on WORK_TYPE_ID and LANGUAGE.
- Work item / audit transaction tables in the AMW schema — the operational tables that consume WORK_TYPE_ID as a foreign key and drive the compliance lifecycle.
Together these dependencies position AMW_WORK_TYPES_B as a foundational reference table whose identity and configuration propagate throughout Internal Controls Manager.
-
Table: AMW_WORK_TYPES_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_WORK_TYPES_B, object_name:AMW_WORK_TYPES_B, status:VALID, product: AMW - Internal Controls Manager , description: Contains information about work types , implementation_dba_data: AMW.AMW_WORK_TYPES_B ,
-
Table: AMW_WORK_TYPES_B
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Contains information about work types , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AMW_PROJECT_LISTS_V
12.1.1
-
SYNONYM: APPS.AMW_WORK_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AMW_WORK_TYPES_B, status:VALID,
-
VIEW: APPS.AMW_AUDIT_PROJECTS_V
12.1.1
-
VIEW: APPS.AMW_WORK_TYPES_VL
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 ,
-
View: AMW_PROJECT_LISTS_V
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: AMW_WORK_TYPES_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_WORK_TYPES_TL, object_name:AMW_WORK_TYPES_TL, status:VALID, product: AMW - Internal Controls Manager , description: Contains work type name and description for AMW_WORK_TYPES_B , implementation_dba_data: AMW.AMW_WORK_TYPES_TL ,
-
VIEW: APPS.AMW_TEMPLATE_TASKS_V
12.1.1
-
Table: AMW_WORK_TYPES_TL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: Contains work type name and description for AMW_WORK_TYPES_B , 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 ,
-
PACKAGE BODY: APPS.AMW_CONSTRAINTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_CONSTRAINTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMW_WORK_TYPES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_WORK_TYPES_PKG, status:VALID,
-
PACKAGE BODY: APPS.AMW_AUDIT_ENGAGEMENT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_AUDIT_ENGAGEMENT_PVT, status:VALID,
-
View: AMW_WORK_TYPES_VL
12.2.2
product: AMW - Internal Controls Manager (Obsolete) , description: View for Work types , implementation_dba_data: Not implemented in this database ,
-
TABLE: AMW.AMW_WORK_TYPES_B
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_WORK_TYPES_B, object_name:AMW_WORK_TYPES_B, 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_LOAD_CONSTRAINT_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_LOAD_CONSTRAINT_DATA, status:VALID,
-
PACKAGE BODY: APPS.AMW_LOAD_PROC_DATA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AMW_LOAD_PROC_DATA, status:VALID,
-
View: AMW_WORK_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WORK_TYPES_VL, object_name:AMW_WORK_TYPES_VL, status:VALID, product: AMW - Internal Controls Manager , description: View for Work types , implementation_dba_data: APPS.AMW_WORK_TYPES_VL ,
-
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,
-
APPS.AMW_WORK_TYPES_PKG SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
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,
-
TABLE: AMW.AMW_WORK_TYPES_TL
12.1.1
owner:AMW, object_type:TABLE, fnd_design_data:AMW.AMW_WORK_TYPES_TL, object_name:AMW_WORK_TYPES_TL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
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,
-
PACKAGE BODY: APPS.AMW_WORK_TYPES_PKG
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AMW_WORK_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMW.AMW_WORK_TYPES_VL, object_name:AMW_WORK_TYPES_VL, status:VALID,
-
APPS.AMW_CONSTRAINTS_PKG SQL Statements
12.1.1
-
APPS.AMW_LOAD_PROC_DATA dependencies on AMW_WORK_TYPES_B
12.1.1
-
APPS.AMW_CONSTRAINTS_PKG dependencies on AMW_WORK_TYPES_B
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT dependencies on AMW_WORK_TYPES_B
12.1.1
-
APPS.AMW_LOAD_CONSTRAINT_DATA dependencies on AMW_WORK_TYPES_B
12.1.1
-
APPS.AMW_WORK_TYPES_PKG dependencies on AMW_WORK_TYPES_B
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 ,
-
APPS.AMW_LOAD_CONSTRAINT_DATA SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AMW_CONSTRAINTS_PKG
12.1.1
-
APPS.AMW_LOAD_PROC_DATA SQL Statements
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT SQL Statements
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT dependencies on PA_PROJECT_TYPES_ALL
12.1.1
-
APPS.AMW_WORK_TYPES_PKG dependencies on AMW_WORK_TYPES_TL
12.1.1
-
APPS.AMW_AUDIT_ENGAGEMENT_PVT dependencies on AMW_AUDIT_PROJECTS_S
12.1.1
-
APPS.AMW_LOAD_CONSTRAINT_DATA dependencies on FND_OBJECTS
12.1.1