Search Results ieu_wp_param_defs_tl




Overview

The IEU_WP_PARAM_DEFS_TL table is a core data object within the Universal Work Queue (UWQ) module of Oracle E-Business Suite (EBS). It functions as the translation table (denoted by the '_TL' suffix) for the base table IEU_WP_PARAM_DEFS_B. Its primary role is to store language-specific, user-facing descriptions for action parameters defined within the UWQ framework. This enables the multi-language support (MLS) capability of EBS, allowing parameter labels and descriptions to be displayed in a user's preferred language, which is critical for global deployments of the application.

Key Information Stored

The table stores translated text for action parameter metadata. Its structure is defined by a composite primary key consisting of PARAM_ID and LANGUAGE. The PARAM_ID column is a foreign key that uniquely links each row to a specific parameter definition in the base table IEU_WP_PARAM_DEFS_B. The LANGUAGE column holds the language code (e.g., 'US' for American English) for the translation. While the exact column list is not detailed in the provided metadata, typical translation tables in EBS contain columns such as SOURCE_LANG, DESCRIPTION, and user-friendly name fields (e.g., PARAM_NAME). These columns hold the translated text that is presented in the UWQ interface, ensuring parameter details are locale-aware.

Common Use Cases and Queries

The primary use case is the runtime display of parameter information within UWQ actions and agent desktops. When a user accesses the interface, the application joins this table with its base table, filtering by the user's session language to retrieve the correct translations. A common reporting or diagnostic query would involve joining the translation and base tables to verify or audit parameter labels across supported languages. For example:

  • Identifying parameters missing translations for a specific language.
  • Extracting a full list of parameter names and descriptions for all configured actions in a target language for training or documentation.
  • Troubleshooting UI display issues where parameter labels appear as internal codes instead of friendly names, often by checking for missing rows in this translation table.

Related Objects

The table has a direct and essential relationship with its corresponding base table, as documented in the provided metadata. The relationship is maintained through a foreign key constraint.

  • IEU_WP_PARAM_DEFS_B: This is the primary related object. The IEU_WP_PARAM_DEFS_TL table references it via the foreign key on the PARAM_ID column (IEU_WP_PARAM_DEFS_TL.PARAM_ID → IEU_WP_PARAM_DEFS_B). All transactional and configuration data for a parameter is stored in the base table, while this (_TL) table holds only the translatable attributes. Any query for a complete parameter definition must typically join these two tables.