Search Results xdp_fulfill_actions_tl_pk
Overview
The XDP_FULFILL_ACTIONS_TL table is a core data object within the Oracle E-Business Suite (EBS) Provisioning (XDP) module. It provides Multi-Language Support (MLS) for the base table XDP_FULFILL_ACTIONS. In EBS, the "_TL" suffix denotes a translation table, which is a standard architectural pattern for storing language-specific, translatable text. This table's primary role is to enable the provisioning system to present fulfillment action names, descriptions, and other user-facing text in the language of the user's session, supporting global deployments of the application.
Key Information Stored
The table stores translated text for records in the parent XDP_FULFILL_ACTIONS table. Its structure is defined by a composite primary key and columns for translated content. The most critical columns are:
- FULFILLMENT_ACTION_ID: The foreign key that uniquely links each translation row to its corresponding master record in XDP_FULFILL_ACTIONS.
- LANGUAGE: The language code (e.g., 'US' for American English, 'KO' for Korean) for the translated text. Together with FULFILLMENT_ACTION_ID, it forms the primary key.
- SOURCE_LANG: A column (common in TL tables) that indicates the original language in which the data was entered.
- Translated Text Columns: Typically includes columns such as ACTION_NAME, DESCRIPTION, or similar to hold the user-visible text in the specified language.
Common Use Cases and Queries
This table is primarily accessed indirectly by the application's MLS framework. However, for reporting, data extraction, or troubleshooting, direct queries are used. A common pattern is to join the TL table with its base table, filtering by the user's session language or a specific language code to retrieve the correct translations.
Sample Query:
SELECT b.technical_column,
t.action_name,
t.description
FROM xdp_fulfill_actions b,
xdp_fulfill_actions_tl t
WHERE b.fulfillment_action_id = t.fulfillment_action_id
AND t.language = USERENV('LANG') -- Or a specific code like 'US'
AND b.enabled_flag = 'Y';
This structure is essential for generating internationalized reports or extracting localized data for downstream systems. Administrators may also query it to audit or manage translation completeness across supported languages.
Related Objects
The table has a direct and singular relationship with its parent base table, as documented in the provided metadata.
- Primary Key Constraint: XDP_FULFILL_ACTIONS_TL_PK on columns (FULFILLMENT_ACTION_ID, LANGUAGE).
- Foreign Key Relationship: The table XDP_FULFILL_ACTIONS_TL references the table XDP_FULFILL_ACTIONS. The join is made on the column XDP_FULFILL_ACTIONS_TL.FULFILLMENT_ACTION_ID, which corresponds to the primary key column in XDP_FULFILL_ACTIONS. This ensures that every translation record is associated with a valid master fulfillment action definition.
-
Table: XDP_FULFILL_ACTIONS_TL
12.1.1
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_FULFILL_ACTIONS_TL, object_name:XDP_FULFILL_ACTIONS_TL, status:VALID, product: XDP - Provisioning , description: MLS (Multi-Language Support) for the XDP_ FULFILLMENT_ACTIONS table , implementation_dba_data: XDP.XDP_FULFILL_ACTIONS_TL ,
-
Table: XDP_FULFILL_ACTIONS_TL
12.2.2
owner:XDP, object_type:TABLE, fnd_design_data:XDP.XDP_FULFILL_ACTIONS_TL, object_name:XDP_FULFILL_ACTIONS_TL, status:VALID, product: XDP - Provisioning , description: MLS (Multi-Language Support) for the XDP_ FULFILLMENT_ACTIONS table , implementation_dba_data: XDP.XDP_FULFILL_ACTIONS_TL ,
-
eTRM - XDP Tables and Views
12.2.2
description: Fulfillment Worklist Details ,
-
eTRM - XDP Tables and Views
12.1.1
description: Fulfillment Worklist Details ,
-
eTRM - XDP Tables and Views
12.2.2
description: Fulfillment Worklist Details ,
-
eTRM - XDP Tables and Views
12.1.1
description: Fulfillment Worklist Details ,