Search Results ieu_uwq_login_rules_tl
Overview
The IEU_UWQ_LOGIN_RULES_TL table is a translation table within the Oracle E-Business Suite (EBS) Universal Work Queue (UWQ) module. It stores translated, language-specific descriptions for server login rules defined in the base table. The UWQ framework provides a centralized, role-based interface for agents to manage work items from multiple applications. This table is integral to supporting multilingual deployments, ensuring that rule descriptions are presented to users in their session language. Its existence is a standard pattern in Oracle EBS, where translatable descriptive fields are separated from non-translatable structural data to facilitate localization.
Key Information Stored
The table's primary function is to hold the translated name and description of a server login rule. According to the provided metadata, its structure is defined by a primary key and a foreign key relationship. The critical columns are:
- SVR_LOGIN_RULE_ID: The foreign key that uniquely links each translation row to its corresponding rule definition in the base table IEU_UWQ_LOGIN_RULES_B.
- LANGUAGE: A column identifying the language code (e.g., 'US' for American English, 'KO' for Korean) for the translated text. This, combined with SVR_LOGIN_RULE_ID, forms the table's primary key.
- Translated Descriptive Columns: While the exact column names are not listed in the excerpt, following Oracle EBS translation table conventions, this table will contain columns such as RULE_NAME and DESCRIPTION (or similar) to store the language-specific text. The SOURCE_LANG column is also typically present to denote the original language of the record.
Common Use Cases and Queries
This table is primarily accessed by the UWQ framework's internal logic to render the user interface. Common operational and reporting scenarios include verifying translation completeness and querying rule descriptions for a specific language. A typical query would join the translation table with its base table to retrieve a fully localized rule set.
Sample Query:
SELECT b.RULE_CODE, tl.RULE_NAME, tl.DESCRIPTION, tl.LANGUAGE
FROM IEU.IEU_UWQ_LOGIN_RULES_B b,
IEU.IEU_UWQ_LOGIN_RULES_TL tl
WHERE b.SVR_LOGIN_RULE_ID = tl.SVR_LOGIN_RULE_ID
AND tl.LANGUAGE = USERENV('LANG')
ORDER BY b.RULE_CODE;
This query fetches all login rules with their descriptions in the current user's session language. Administrators might also query for rules missing translations in a target language by checking for NULL values in the translated name or description fields for that language code.
Related Objects
The table's relationships are explicitly defined in the metadata. Its primary dependency is on the base table, which holds the core rule definition.
- IEU_UWQ_LOGIN_RULES_B: This is the base table containing the non-translatable core attributes of a server login rule, such as the rule code and technical parameters. The foreign key IEU_UWQ_LOGIN_RULES_TL.SVR_LOGIN_RULE_ID references IEU_UWQ_LOGIN_RULES_B.SVR_LOGIN_RULE_ID.
- IEU_UWQ_LOGIN_RULES_TL_PK: The primary key constraint on the SVR_LOGIN_RULE_ID and LANGUAGE columns, ensuring uniqueness of translations.
- UWQ Administrator UI: The functional screens used to define and maintain server login rules will read from and write to this translation table when operating in a multilingual context.
-
Table: IEU_UWQ_LOGIN_RULES_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_LOGIN_RULES_TL, object_name:IEU_UWQ_LOGIN_RULES_TL, status:VALID, product: IEU - Universal Work Queue , description: Server Login Rules (Translations) , implementation_dba_data: IEU.IEU_UWQ_LOGIN_RULES_TL ,
-
Table: IEU_UWQ_LOGIN_RULES_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_LOGIN_RULES_TL, object_name:IEU_UWQ_LOGIN_RULES_TL, status:VALID, product: IEU - Universal Work Queue , description: Server Login Rules (Translations) , implementation_dba_data: IEU.IEU_UWQ_LOGIN_RULES_TL ,
-
APPS.IEU_UWQ_LOGIN_RULES_PKG dependencies on IEU_UWQ_LOGIN_RULES_TL
12.2.2
-
APPS.IEU_UWQ_LOGIN_RULES_PKG dependencies on IEU_UWQ_LOGIN_RULES_TL
12.1.1
-
APPS.IEU_UWQ_LOGIN_RULES_PKG SQL Statements
12.2.2
-
APPS.IEU_UWQ_LOGIN_RULES_PKG SQL Statements
12.1.1
-
VIEW: IEU.IEU_UWQ_LOGIN_RULES_TL#
12.2.2
owner:IEU, object_type:VIEW, object_name:IEU_UWQ_LOGIN_RULES_TL#, status:VALID,
-
APPS.IEU_UWQ_LOGIN_RULES_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.IEU_UWQ_LOGIN_RULES_PKG dependencies on FND_LANGUAGES
12.1.1
-
SYNONYM: APPS.IEU_UWQ_LOGIN_RULES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IEU_UWQ_LOGIN_RULES_TL, status:VALID,
-
TRIGGER: APPS.IEU_UWQ_LOGIN_RULES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:IEU_UWQ_LOGIN_RULES_TL+, status:VALID,
-
PACKAGE BODY: APPS.IEU_UWQ_LOGIN_RULES_PKG
12.2.2
-
PACKAGE BODY: APPS.IEU_UWQ_LOGIN_RULES_PKG
12.1.1
-
SYNONYM: APPS.IEU_UWQ_LOGIN_RULES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:IEU_UWQ_LOGIN_RULES_TL, status:VALID,
-
VIEW: IEU.IEU_UWQ_LOGIN_RULES_TL#
12.2.2
-
TRIGGER: APPS.IEU_UWQ_LOGIN_RULES_TL+
12.2.2
-
APPS.IEU_UWQ_LOGIN_RULES_PKG dependencies on IEU_UWQ_LOGIN_RULES_B
12.2.2
-
APPS.IEU_UWQ_LOGIN_RULES_PKG dependencies on IEU_UWQ_LOGIN_RULES_B
12.1.1
-
TABLE: IEU.IEU_UWQ_LOGIN_RULES_TL
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_LOGIN_RULES_TL, object_name:IEU_UWQ_LOGIN_RULES_TL, status:VALID,
-
Table: IEU_UWQ_LOGIN_RULES_B
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_LOGIN_RULES_B, object_name:IEU_UWQ_LOGIN_RULES_B, status:VALID, product: IEU - Universal Work Queue , description: Server Login Rules (Base) , implementation_dba_data: IEU.IEU_UWQ_LOGIN_RULES_B ,
-
FUNCTION: APPS.IEU_UWQ_LOGIN_RULES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:IEU_UWQ_LOGIN_RULES_TL=, status:VALID,
-
TABLE: IEU.IEU_UWQ_LOGIN_RULES_TL
12.2.2
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_LOGIN_RULES_TL, object_name:IEU_UWQ_LOGIN_RULES_TL, status:VALID,
-
FUNCTION: APPS.IEU_UWQ_LOGIN_RULES_TL=
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: IEU_UWQ_LOGIN_RULES_B
12.1.1
owner:IEU, object_type:TABLE, fnd_design_data:IEU.IEU_UWQ_LOGIN_RULES_B, object_name:IEU_UWQ_LOGIN_RULES_B, status:VALID, product: IEU - Universal Work Queue , description: Server Login Rules (Base) , implementation_dba_data: IEU.IEU_UWQ_LOGIN_RULES_B ,
-
PACKAGE BODY: APPS.IEU_UWQ_LOGIN_RULES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_UWQ_LOGIN_RULES_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.IEU_UWQ_LOGIN_RULES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IEU_UWQ_LOGIN_RULES_PKG, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: PUBLIC.DATABASE_PROPERTIES
12.2.2
owner:PUBLIC, object_type:SYNONYM, object_name:DATABASE_PROPERTIES, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
eTRM - IEU Tables and Views
12.2.2
description: UI Component-Data Types mapping ,
-
eTRM - IEU Tables and Views
12.1.1
description: UI Component-Data Types mapping ,
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1