Search Results ieu_uwqm_priorities_b
Overview
The table IEU_UWQM_PRIORITIES_B is a core data object within the Oracle E-Business Suite (EBS) Universal Work Queue (UWQ) module. It functions as the base table for storing the master list of priority codes that govern the ordering and urgency of work items presented to users within the UWQ interface. As a "Metaphor priorities" table, it defines the discrete priority levels (such as High, Medium, Low) that can be assigned to tasks, enabling intelligent work routing, filtering, and visual cueing. Its role is critical for configuring and driving the prioritization logic of the UWQ framework across both EBS 12.1.1 and 12.2.2 versions, ensuring that agents can focus on the most critical tasks first.
Key Information Stored
The table's primary purpose is to maintain a unique, system-defined identifier for each priority level. While the full column list is not detailed in the provided metadata, the documented primary and foreign key relationships definitively identify the core structural column. The PRIORITY_ID column serves as the primary key (PK) for the table. This numeric or alphanumeric identifier uniquely defines each priority record. Typically, base tables like this in EBS also contain standard WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) for auditing, and a LANGUAGE column if it is a seed data table. The translatable descriptive name for each priority code, however, is stored in the related IEU_UWQM_PRIORITIES_TL table.
Common Use Cases and Queries
This table is primarily referenced for setup, reporting, and data validation. Administrators may query it to verify the list of available priorities configured in the system. Common SQL patterns involve joining to the translation table to retrieve user-friendly names and joining to work item tables for analytical reporting. For instance, to generate a report showing the distribution of work items by priority, one would join IEU_UWQM_PRIORITIES_B to IEU_UWQM_ITEMS. A typical query pattern is:
- SELECT p.PRIORITY_ID, tl.NAME, COUNT(i.item_id) AS ITEM_COUNT FROM IEU_UWQM_PRIORITIES_B p, IEU_UWQM_PRIORITIES_TL tl, IEU_UWQM_ITEMS i WHERE p.PRIORITY_ID = tl.PRIORITY_ID AND p.PRIORITY_ID = i.PRIORITY_ID AND tl.LANGUAGE = USERENV('LANG') GROUP BY p.PRIORITY_ID, tl.NAME;
This table is also central when customizing or extending UWQ behavior, as any logic that sorts or filters items by priority will reference these stored codes.
Related Objects
The table IEU_UWQM_PRIORITIES_B sits at the center of a small hierarchy of related UWQ objects, as evidenced by its documented foreign key relationships.
- IEU_UWQM_ITEMS: This is the primary transactional table. Its PRIORITY_ID column has a foreign key constraint referencing IEU_UWQM_PRIORITIES_B.PRIORITY_ID. This ensures every work item is assigned a valid, predefined priority.
- IEU_UWQM_PRIORITIES_TL: This is the corresponding Translation table. Its PRIORITY_ID column is a foreign key back to the base table's primary key, allowing for multilingual support of priority names and descriptions.
These relationships establish IEU_UWQM_PRIORITIES_B as the authoritative source for priority definitions, which are then consumed by work items (IEU_UWQM_ITEMS) and described in multiple languages (IEU_UWQM_PRIORITIES_TL).
-
Table: IEU_UWQM_PRIORITIES_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_PRIORITIES_B, object_name:IEU_UWQM_PRIORITIES_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor priorities. , implementation_dba_data: IEU.IEU_UWQM_PRIORITIES_B ,
-
Table: IEU_UWQM_PRIORITIES_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_PRIORITIES_B, object_name:IEU_UWQM_PRIORITIES_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor priorities. , implementation_dba_data: IEU.IEU_UWQM_PRIORITIES_B ,
-
Table: IEU_UWQM_PRIORITIES_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_PRIORITIES_TL, object_name:IEU_UWQM_PRIORITIES_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor priorities translations. , implementation_dba_data: IEU.IEU_UWQM_PRIORITIES_TL ,
-
Table: IEU_UWQM_ITEMS
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_ITEMS, object_name:IEU_UWQM_ITEMS, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor items table. , implementation_dba_data: IEU.IEU_UWQM_ITEMS ,
-
Table: IEU_UWQM_PRIORITIES_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_PRIORITIES_TL, object_name:IEU_UWQM_PRIORITIES_TL, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor priorities translations. , implementation_dba_data: IEU.IEU_UWQM_PRIORITIES_TL ,
-
Table: IEU_UWQM_ITEMS
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQM_ITEMS, object_name:IEU_UWQM_ITEMS, status:VALID, product: IEU - Universal Work Queue , description: UWQ Metaphor items table. , implementation_dba_data: IEU.IEU_UWQM_ITEMS ,