Search Results xdp_workitems_tl




Overview

The XDP_WORKITEMS_TL table is a core component of the Oracle E-Business Suite Provisioning (XDP) module, specifically designed to support Multi-Language Support (MLS) or translation functionality. It serves as the language-specific counterpart to the base XDP_WORKITEMS table. In Oracle EBS 12.1.1 and 12.2.2, provisioning workflows manage the automated activation and configuration of services. This table stores translated textual descriptions for work items, which represent individual units of work within these provisioning processes, enabling the application to present user-facing content in multiple languages based on the user's session settings.

Key Information Stored

The table's primary purpose is to hold language-specific versions of descriptive columns from its parent table. Its structure is defined by a composite primary key combining a foreign key to the base data and a language code. The most critical columns include WORKITEM_ID, which links each translated row to a specific record in the XDP_WORKITEMS base table, and LANGUAGE, which stores the standard Oracle language code (e.g., 'US' for American English). The table typically contains translated versions of descriptive columns such as DISPLAY_NAME, DESCRIPTION, or INSTRUCTIONS, allowing the application to display work item details in the user's preferred language.

Common Use Cases and Queries

The primary use case is the dynamic rendering of provisioning work item interfaces in a global deployment. When a user accesses a work list or process monitor, the application joins this table to XDP_WORKITEMS using the WORKITEM_ID and the session's LANGUAGE value. A common reporting query involves extracting work item details for a specific language for audit or support purposes. For example:
SELECT wi.workitem_id, tl.display_name, tl.description, wi.status_code
FROM xdp_workitems wi, xdp_workitems_tl tl
WHERE wi.workitem_id = tl.workitem_id
AND tl.language = 'DE'
AND wi.creation_date > SYSDATE - 7;

Developers and DBAs may also query this table to verify the existence of translations for newly implemented work items or to identify missing translations for a target language.

Related Objects

The table has a direct and fundamental relationship with its base table, as documented in the provided metadata.

  • Primary Table (Parent): XDP_WORKITEMS. The XDP_WORKITEMS_TL table references XDP_WORKITEMS via the foreign key on the column XDP_WORKITEMS_TL.WORKITEM_ID.
  • Primary Key: XDP_WORKITEMS_TL_PK, defined on the columns (WORKITEM_ID, LANGUAGE).
As a standard _TL table, it is also intrinsically linked to the Oracle EBS Multi-Language Support architecture and is typically accessed via views that automatically handle language filtering, though specific view names for this object are not detailed in the provided excerpt.