Search Results ieu_wp_ui_comp_datatypes
Overview
The IEU.IEU_WP_UI_COMP_DATATYPES table is a configuration metadata object within the IEU – Universal Work Queue (UWQ) module of Oracle E-Business Suite, available in both 12.1.1 and 12.2.2. Its documented purpose is "UI Component – Data Types mapping." The table establishes the permitted data types that each UI component (defined in IEU_WP_UI_COMPONENTS_B) may render or accept within the Universal Work Queue framework, which brokers inbound work items across CRM, TeleService, and other call-center modules.
Each row maps a single UI component to one supported data type, and an administrative identifier (UI_COMP_DATATYPE_MAP_ID) anchors the record. The ETRM relationship metadata classifies this table heuristically as standalone in Data Vault terms; a modeling suggestion would treat it as a small reference or link-style association table rather than a hub or satellite, since its grain is the component-to-data-type pairing and its lifecycle is configuration, not transactional history.
Key Information Stored
The physical schema exposes eleven columns in 12.2.2:
UI_COMP_DATATYPE_MAP_ID— surrogate primary key (fromIEU_WP_UI_COMP_DATATYPES_PK); uniquely identifies each component/data-type mapping row.UI_COMP_ID— foreign key toIEU_WP_UI_COMPONENTS_B; identifies the UI component being mapped.DATA_TYPE— the data type the component supports (for example, numeric, character, or date representations used by the work queue rendering layer).SECURITY_GROUP_ID— foreign key toFND_SECURITY_GROUPS; applies Oracle Applications row-level security to the configuration row.OBJECT_VERSION_NUMBER— optimistic concurrency control column used by the OAF/BC4J framework on updates.ZD_EDITION_NAME— editioning column introduced in 12.2 for Online Patching (EBS 12.2.2); part of the unique indexIEU_WP_UI_COMP_DATATYPES_U1.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard WHO audit columns recording the identity, timestamp, and login context of the creating and last-updating user.
The unique index IEU_WP_UI_COMP_DATATYPES_U1 spans UI_COMP_DATATYPE_MAP_ID and ZD_EDITION_NAME, which is the documented business-key candidate: in 12.2 the edition name disambiguates rows across patch editions, while the surrogate ID remains the stable primary key for joins.
Common Use Cases and Queries
Because this table is configuration-driven, its primary use cases are validating and reporting on UWQ component setup. A typical diagnostic query joins the mapping to its parent component to list supported data types:
- Listing all data types registered for a given UI component:
SELECT m.ui_comp_id, m.data_type FROM ieu.ieu_wp_ui_comp_datatypes m WHERE m.ui_comp_id = :p_comp_id; - Detecting orphaned mappings (components referenced but missing from
IEU_WP_UI_COMPONENTS_B) using an outer join onUI_COMP_ID. - Reporting configuration changes by
LAST_UPDATED_BY/LAST_UPDATE_DATEfor audit purposes. - Filtering by
SECURITY_GROUP_IDto confirm row-level visibility for a given responsibility. - Verifying 12.2 edition coverage via
ZD_EDITION_NAMEafter an online patching cycle.
Reports typically drive off the unique index and the composite join to the components table; production queries should always include SECURITY_GROUP_ID predicates to respect Multi-Org style security.
Related Objects
IEU_WP_UI_COMPONENTS_B— parent component definitions; join onUI_COMP_ID = UI_COMPONENTS_B.UI_COMP_ID.FND_SECURITY_GROUPS— security group reference; join onSECURITY_GROUP_ID.IEU_WP_UI_COMP_DATATYPES_PK— primary key constraint enforcing uniqueness onUI_COMP_DATATYPE_MAP_ID.IEU_WP_UI_COMP_DATATYPES_U1— unique index onUI_COMP_DATATYPE_MAP_IDandZD_EDITION_NAME.- Related UWQ configuration tables (
IEU_WP_UI_COMPONENTS_TL, work queue and routing tables) that reference the same component identifiers.
-
Table: IEU_WP_UI_COMP_DATATYPES
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMP_DATATYPES, object_name:IEU_WP_UI_COMP_DATATYPES, status:VALID, product: IEU - Universal Work Queue , description: UI Component-Data Types mapping , implementation_dba_data: IEU.IEU_WP_UI_COMP_DATATYPES ,
-
Table: IEU_WP_UI_COMP_DATATYPES
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMP_DATATYPES, object_name:IEU_WP_UI_COMP_DATATYPES, status:VALID, product: IEU - Universal Work Queue , description: UI Component-Data Types mapping , implementation_dba_data: IEU.IEU_WP_UI_COMP_DATATYPES ,
-
VIEW: IEU.IEU_WP_UI_COMP_DATATYPES#
12.2.2
owner:IEU, object_type:VIEW, object_name:IEU_WP_UI_COMP_DATATYPES#, status:VALID,
-
TRIGGER: APPS.IEU_WP_UI_COMP_DATATYPES+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IEU_WP_UI_COMP_DATATYPES+, status:VALID,
-
APPS.IEU_WP_UI_COMP_DATATYPES_PKG SQL Statements
12.1.1
-
APPS.IEU_WP_UI_COMP_DATATYPES_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.IEU_WP_UI_COMP_DATATYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEU_WP_UI_COMP_DATATYPES, status:VALID,
-
SYNONYM: APPS.IEU_WP_UI_COMP_DATATYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEU_WP_UI_COMP_DATATYPES, status:VALID,
-
VIEW: IEU.IEU_WP_UI_COMP_DATATYPES#
12.2.2
-
TRIGGER: APPS.IEU_WP_UI_COMP_DATATYPES+
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_UI_COMP_DATATYPES_PKG
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_UI_COMP_DATATYPES_PKG
12.1.1
-
TABLE: IEU.IEU_WP_UI_COMP_DATATYPES
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMP_DATATYPES, object_name:IEU_WP_UI_COMP_DATATYPES, status:VALID,
-
TABLE: IEU.IEU_WP_UI_COMP_DATATYPES
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMP_DATATYPES, object_name:IEU_WP_UI_COMP_DATATYPES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IEU_WP_UI_COMP_DATATYPES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WP_UI_COMP_DATATYPES_PKG, status:VALID,
-
FUNCTION: APPS.IEU_WP_UI_COMP_DATATYPES=
12.2.2
-
FUNCTION: APPS.IEU_WP_UI_COMP_DATATYPES=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IEU_WP_UI_COMP_DATATYPES=, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_UI_COMP_DATATYPES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WP_UI_COMP_DATATYPES_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.IEU_WP_UI_COMP_DATATYPES_PKG dependencies on IEU_WP_UI_COMP_DATATYPES
12.1.1
-
APPS.IEU_WP_UI_COMP_DATATYPES_PKG dependencies on IEU_WP_UI_COMP_DATATYPES
12.2.2
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1