Search Results ieu_wp_ui_components_b
Overview
The IEU_WP_UI_COMPONENTS_B table is a core configuration and metadata repository within the Oracle E-Business Suite Universal Work Queue (UWQ) module, owned by the IEU schema. It serves as the master (base) table for defining user interface components that are rendered within the UWQ framework. In Oracle EBS 12.1.1 and 12.2.2, UWQ is the agent-facing console that aggregates work items from multiple source applications—such as Service Requests, Tasks, and Collections—into a unified interface. The records in IEU_WP_UI_COMPONENTS_B describe the reusable UI building blocks (forms, regions, and property classes) that the UWQ runtime engine instantiates dynamically at runtime.
From a Data Vault modeling perspective, this table carries a hub-leaning classification based on its foreign key topology. It anchors a stable business key (UI_COMP_ID) and is referenced by downstream tables rather than itself being a purely descriptive satellite or a transactional link. This suggests it functions as a durable entity hub for UI component identity.
Key Information Stored
The table contains 13 documented columns. The most significant include:
- UI_COMP_ID — The surrogate primary key (IEU_WP_UI_COMPONENTS_B_PK) and principal business identifier for each UI component definition.
- UI_COMP_CATG_CODE — Categorization code classifying the component type within UWQ.
- FORM_COMP_CODE — Identifies the associated form component code used to resolve the rendered element.
- FORM_COMP_AVAIL_NO — Availability flag or ordinal governing when the form component is presented.
- PROPERTY_CLASS — The Java or UI property class bound to the component for styling/behavior.
- SECURITY_GROUP_ID — Foreign key to FND_SECURITY_GROUPS, enforcing multi-tenant/security isolation (Org Security in 12.2.2).
- OBJECT_VERSION_NUMBER — Optimistic locking column supporting concurrent updates.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard WHO audit columns tracking record provenance and change history.
- ZD_EDITION_NAME — Editioning column supporting Online Patching (ADOP) in 12.2.2.
The unique index IEU_WP_UI_COMPONENTS_B_U1 spans (UI_COMP_ID, ZD_EDITION_NAME), confirming that ZD_EDITION_NAME participates in the business key to support edition-aware uniqueness. The surrogate PK remains UI_COMP_ID alone.
Common Use Cases and Queries
Typical scenarios include runtime resolution of UWQ component definitions, auditing component configuration across editions, and joining to translated text. A representative query retrieving component metadata with its translation is:
SELECT b.UI_COMP_ID, b.UI_COMP_CATG_CODE, b.FORM_COMP_CODE, t.UI_COMP_NAME FROM IEU.IEU_WP_UI_COMPONENTS_B b, IEU.IEU_WP_UI_COMPONENTS_TL t WHERE b.UI_COMP_ID = t.UI_COMP_ID AND t.LANGUAGE = USERENV('LANG');- Filtering by security:
... WHERE b.SECURITY_GROUP_ID = :sgid; - Edition-aware lookups in 12.2.2 should include
WHERE ZD_EDITION_NAME = 'RELEASE_12_2_2'(or the active edition) to avoid cross-edition duplicates.
Reporting use cases cover gap analysis of undefined components, impact assessment before patching, and data lineage tracing from UI component to translation and datatype bindings.
Related Objects
The following dependency relationships are documented:
- IEU_WP_UI_COMPONENTS_TL — Translation table; joins on UI_COMP_ID, supplying language-specific names and descriptions.
- IEU_WP_UI_COMP_DATATYPES — Normalized child holding datatype bindings per component; joins on UI_COMP_ID.
- FND_SECURITY_GROUPS — Referenced via SECURITY_GROUP_ID for security group resolution.
- IEU_WP_UI_COMPONENTS_B_PK — Primary key constraint enforcing UI_COMP_ID uniqueness.
- IEU_WP_UI_COMPONENTS_B_U1 — Composite unique index (UI_COMP_ID, ZD_EDITION_NAME) supporting editioning.
Together these objects form the metadata backbone for UWQ UI rendering and require consistent maintenance during upgrades and edition transitions.
-
Table: IEU_WP_UI_COMPONENTS_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_B, object_name:IEU_WP_UI_COMPONENTS_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ UI Components - B , implementation_dba_data: IEU.IEU_WP_UI_COMPONENTS_B ,
-
Table: IEU_WP_UI_COMPONENTS_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_B, object_name:IEU_WP_UI_COMPONENTS_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ UI Components - B , implementation_dba_data: IEU.IEU_WP_UI_COMPONENTS_B ,
-
VIEW: IEU.IEU_WP_UI_COMPONENTS_B#
12.2.2
owner:IEU, object_type:VIEW, object_name:IEU_WP_UI_COMPONENTS_B#, status:VALID,
-
SYNONYM: APPS.IEU_WP_UI_COMPONENTS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEU_WP_UI_COMPONENTS_B, status:VALID,
-
SYNONYM: APPS.IEU_WP_UI_COMPONENTS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEU_WP_UI_COMPONENTS_B, status:VALID,
-
VIEW: APPS.IEU_WP_UI_COMPONENTS_VL
12.2.2
-
APPS.IEU_WP_UI_COMPONENTS_PKG SQL Statements
12.2.2
-
VIEW: APPS.IEU_WP_UI_COMPONENTS_VL
12.1.1
-
TRIGGER: APPS.IEU_WP_UI_COMPONENTS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IEU_WP_UI_COMPONENTS_B+, status:VALID,
-
APPS.IEU_WP_UI_COMPONENTS_PKG SQL Statements
12.1.1
-
TRIGGER: APPS.IEU_WP_UI_COMPONENTS_B+
12.2.2
-
VIEW: IEU.IEU_WP_UI_COMPONENTS_B#
12.2.2
-
FUNCTION: APPS.IEU_WP_UI_COMPONENTS_B=
12.2.2
-
Table: IEU_WP_UI_COMPONENTS_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_TL, object_name:IEU_WP_UI_COMPONENTS_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ UI Components - TL , implementation_dba_data: IEU.IEU_WP_UI_COMPONENTS_TL ,
-
Table: IEU_WP_UI_COMPONENTS_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_TL, object_name:IEU_WP_UI_COMPONENTS_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ UI Components - TL , implementation_dba_data: IEU.IEU_WP_UI_COMPONENTS_TL ,
-
FUNCTION: APPS.IEU_WP_UI_COMPONENTS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IEU_WP_UI_COMPONENTS_B=, status:VALID,
-
TABLE: IEU.IEU_WP_UI_COMPONENTS_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_B, object_name:IEU_WP_UI_COMPONENTS_B, status:VALID,
-
TABLE: IEU.IEU_WP_UI_COMPONENTS_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_B, object_name:IEU_WP_UI_COMPONENTS_B, status:VALID,
-
View: IEU_WP_UI_COMPONENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_VL, object_name:IEU_WP_UI_COMPONENTS_VL, status:VALID, product: IEU - Universal Work Queue , description: View of UWQ UI Components , implementation_dba_data: APPS.IEU_WP_UI_COMPONENTS_VL ,
-
View: IEU_WP_UI_COMPONENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_VL, object_name:IEU_WP_UI_COMPONENTS_VL, status:VALID, product: IEU - Universal Work Queue , description: View of UWQ UI Components , implementation_dba_data: APPS.IEU_WP_UI_COMPONENTS_VL ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_UI_COMPONENTS_PKG
12.2.2
-
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 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_WP_UI_COMPONENTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WP_UI_COMPONENTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IEU_WP_UI_COMPONENTS_PKG
12.1.1
-
PACKAGE BODY: APPS.IEU_WP_UI_COMPONENTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_WP_UI_COMPONENTS_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IEU_WP_UI_COMPONENTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_VL, object_name:IEU_WP_UI_COMPONENTS_VL, status:VALID,
-
VIEW: APPS.IEU_WP_UI_COMPONENTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_WP_UI_COMPONENTS_VL, object_name:IEU_WP_UI_COMPONENTS_VL, status:VALID,
-
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 ,
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on IEU_WP_UI_COMPONENTS_B
12.2.2
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on IEU_WP_UI_COMPONENTS_B
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
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 ,
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on IEU_WP_UI_COMPONENTS_TL
12.2.2
-
APPS.IEU_WP_UI_COMPONENTS_PKG dependencies on IEU_WP_UI_COMPONENTS_TL
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,