Search Results user_param1




Overview

The IEU_UWQ_ACQ_EMAIL_V view is a component of the Oracle E-Business Suite Universal Work Queue (IEU) module, which provides a centralized, agent-facing work environment for multi-channel interaction handling. This view is specifically designed to support the UWQ selector SpreadTable, a UI construct that renders tabular data in a spread-sheet-like grid within the Universal Work Queue agent dashboard. In the context of Oracle EBS 12.1.1 and 12.2.2, the view surfaces email message headers — including sender, recipient, subject, priority, score, and mailbox folder information — as a unified result set that the UWQ framework can consume for selector processing and agent presentation.

Rather than functioning as a persistent reporting view, IEU_UWQ_ACQ_EMAIL_V acts as a runtime integration view that invokes the acquisition function IEU_ACQ_EMAIL_FUNC_PVT.GET_EMAIL_HEADERS to retrieve email headers dynamically from the underlying email connector. This makes it a critical bridge between the IEU UWQ selector metadata and the Email Center message store.

Underlying Base Objects

The view's FROM clause references several documented IEU base objects. The driving table is IEU_UWQ_SEL_MRT_DATA (aliased A), which holds selector metadata resource rows. It joins to IEU_UWQ_MEDIA_TYPES_B (B) and its translation table IEU_UWQ_MEDIA_TYPES_TL (C) to resolve the media type UUID and localized media type name. The email-specific data is produced by a pipelined table function: IEU_ACQ_EMAIL_FUNC_PVT.GET_EMAIL_HEADERS(A.RESOURCE_ID,'ALL',0,0), cast as IEU_UWQ_MSG_HEADER_TABLE (aliased D).

The WHERE clause restricts the result set to a single media type UUID (D2325ED0421D11D484CD00C04F53F265), matches the base media type ID across B and C, filters C.LANGUAGE to USERENV('LANG') for locale-appropriate names, restricts A.MEDIA_TYPE_ID to 10001 (email), and excludes invalid selectors via NVL(A.NOT_VALID,'N') = 'N'. No additional referenced base objects are documented in the ETRM metadata.

Key Columns

Common Use Cases and Queries

Typical use cases include configuring UWQ email selectors that filter or group messages by mailbox folder, validating that email acquisition is returning folder metadata, and troubleshooting selector SpreadTable rendering. A representative query:

  • SELECT RESOURCE_ID, SUBJECT, SENDER_NAME, RECEIVED_DATE, FOLDER_NAME FROM IEU_UWQ_ACQ_EMAIL_V WHERE FOLDER_NAME = 'Inbox';
  • SELECT QUEUE_NAME, COUNT(*) FROM IEU_UWQ_ACQ_EMAIL_V GROUP BY QUEUE_NAME;
  • SELECT RESOURCE_ID, FOLDER_PATH, FOLDER_NAME, PRIORITY FROM IEU_UWQ_ACQ_EMAIL_V ORDER BY RECEIVED_DATE DESC;

Because the view depends on the pipelined acquisition function, queries may be resource-intensive and should be bounded by RESOURCE_ID or folder predicates. Access is typically restricted to IEU/UWQ functional administrators rather than general reporting users.