Search Results ieu_uwq_media_actions
Overview
The IEU_UWQ_MEDIA_ACTIONS table is a core data repository within the Oracle E-Business Suite Universal Work Queue (UWQ) module. It functions as a configuration and mapping table that defines the specific action procedures available for different media types delivered through the UWQ framework. Its primary role is to establish the executable business logic or workflows (actions) that agents can perform on work items arriving via various communication channels, such as phone calls, emails, or web chats. By linking media types to predefined actions, this table enables the dynamic and context-sensitive presentation of agent options within the UWQ interface, directly supporting the module's goal of unifying customer interaction management.
Key Information Stored
The table's structure centers on identifying the action, its context, and its association with a media type. The primary identifier is the MEDIA_ACTION_ID. Critical foreign key columns establish essential relationships: MEDIA_TYPE_ID links to the IEU_UWQ_MEDIA_TYPES_B table to identify the channel (e.g., email, callback), and MACTION_DEF_ID links to the IEU_UWQ_MACTION_DEFS_B table to reference the underlying action definition or procedure code. Additional key columns include RESP_ID, which ties the action availability to a specific responsibility (security layer), and CLASSIFICATION, which is likely used to categorize or group actions for UI presentation or functional filtering within the agent desktop.
Common Use Cases and Queries
A primary use case is auditing or troubleshooting the actions configured for a specific media channel within a given responsibility. For instance, an administrator may need to verify all email-related actions available to the "Service Agent" responsibility. A common reporting need is to generate a list of all configured media-action mappings for documentation or compliance purposes. Sample SQL to retrieve this mapping would join the related definition tables.
- Sample Query: List Actions for a Media Type
SELECT mta.MEDIA_TYPE_NAME, mad.ACTION_NAME, ma.CLASSIFICATION
FROM IEU_UWQ_MEDIA_ACTIONS ma,
IEU_UWQ_MEDIA_TYPES_B mta,
IEU_UWQ_MACTION_DEFS_B mad
WHERE ma.MEDIA_TYPE_ID = mta.MEDIA_TYPE_ID
AND ma.MACTION_DEF_ID = mad.MACTION_DEF_ID
AND ma.RESP_ID = :resp_id
ORDER BY mta.MEDIA_TYPE_NAME, ma.CLASSIFICATION; - Customization & Extension: When adding a new custom action (e.g., "Escalate to Supervisor") for an existing media type, a new record must be inserted into this table, correctly populating the MEDIA_TYPE_ID, MACTION_DEF_ID, RESP_ID, and CLASSIFICATION columns.
Related Objects
The IEU_UWQ_MEDIA_ACTIONS table exists within a tightly defined schema for UWQ configuration. It has documented foreign key relationships with two key base tables, as per the provided metadata.
- IEU_UWQ_MEDIA_TYPES_B: Joined via
IEU_UWQ_MEDIA_ACTIONS.MEDIA_TYPE_ID = IEU_UWQ_MEDIA_TYPES_B.MEDIA_TYPE_ID. This relationship ensures an action is valid only for a defined and installed media channel. - IEU_UWQ_MACTION_DEFS_B: Joined via
IEU_UWQ_MEDIA_ACTIONS.MACTION_DEF_ID = IEU_UWQ_MACTION_DEFS_B.MACTION_DEF_ID. This relationship links the configuration record to the actual executable action definition, which contains the procedure or function name to be invoked.
This table is central to the UWQ action engine and is likely referenced by various UWQ application programming interfaces (APIs) and the underlying UWQ business logic that renders the agent's action palette.
-
Table: IEU_UWQ_MEDIA_ACTIONS
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_ACTIONS, object_name:IEU_UWQ_MEDIA_ACTIONS, status:VALID, product: IEU - Universal Work Queue , description: UWQ Media Delivery Action Procedures. , implementation_dba_data: IEU.IEU_UWQ_MEDIA_ACTIONS ,
-
Table: IEU_UWQ_MEDIA_ACTIONS
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_ACTIONS, object_name:IEU_UWQ_MEDIA_ACTIONS, status:VALID, product: IEU - Universal Work Queue , description: UWQ Media Delivery Action Procedures. , implementation_dba_data: IEU.IEU_UWQ_MEDIA_ACTIONS ,
-
Table: IEU_UWQ_MACTION_DEFS_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MACTION_DEFS_B, object_name:IEU_UWQ_MACTION_DEFS_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Action Definitions (base) , implementation_dba_data: IEU.IEU_UWQ_MACTION_DEFS_B ,
-
Table: IEU_UWQ_MACTION_DEFS_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MACTION_DEFS_B, object_name:IEU_UWQ_MACTION_DEFS_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Action Definitions (base) , implementation_dba_data: IEU.IEU_UWQ_MACTION_DEFS_B ,
-
Table: IEU_UWQ_MEDIA_TYPES_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_TYPES_B, object_name:IEU_UWQ_MEDIA_TYPES_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Media Types (base) , implementation_dba_data: IEU.IEU_UWQ_MEDIA_TYPES_B ,
-
Table: IEU_UWQ_MEDIA_TYPES_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_MEDIA_TYPES_B, object_name:IEU_UWQ_MEDIA_TYPES_B, status:VALID, product: IEU - Universal Work Queue , description: UWQ Media Types (base) , implementation_dba_data: IEU.IEU_UWQ_MEDIA_TYPES_B ,
-
View: IEU_UWQ_MEDIA_ACTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_MEDIA_ACTIONS_VL, object_name:IEU_UWQ_MEDIA_ACTIONS_VL, status:VALID, product: IEU - Universal Work Queue , description: View of media actions for forms. , implementation_dba_data: APPS.IEU_UWQ_MEDIA_ACTIONS_VL ,
-
View: IEU_UWQ_MEDIA_ACTIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IEU.IEU_UWQ_MEDIA_ACTIONS_VL, object_name:IEU_UWQ_MEDIA_ACTIONS_VL, status:VALID, product: IEU - Universal Work Queue , description: View of media actions for forms. , implementation_dba_data: APPS.IEU_UWQ_MEDIA_ACTIONS_VL ,