Search Results jtf_um_subscriptions_tl
Overview
The JTF_UM_SUBSCRIPTIONS_TL table is a core data object within the Oracle E-Business Suite (EBS) CRM Foundation (JTF) module. It functions specifically as a translation table for its base table, JTF_UM_SUBSCRIPTIONS_B. This design pattern is standard in Oracle EBS to support multi-language implementations, enabling the storage of translated, user-facing text for a single base record. The table's primary role is to hold the language-specific descriptions and names for user management subscriptions, which are foundational to defining and managing user access and responsibilities within the CRM framework of EBS versions 12.1.1 and 12.2.2.
Key Information Stored
The table stores translated attributes for subscription entities. Its structure is defined by a composite primary key consisting of SUBSCRIPTION_ID and LANGUAGE. The SUBSCRIPTION_ID column is a foreign key that uniquely links each translation row back to its master record in the JTF_UM_SUBSCRIPTIONS_B table. The LANGUAGE column identifies the language code (e.g., 'US' for American English) for the translated text. While the exact column list is not detailed in the provided metadata, typical translation tables (TL) in this context contain columns such as DESCRIPTION, SUBSCRIPTION_NAME, and SOURCE_LANG. These columns hold the translated text and the original language of the source data, respectively. The inclusion of a SOURCE_LANG column is a common EBS practice to track the language of the originally entered data.
Common Use Cases and Queries
The primary use case is retrieving subscription information in a user's session language for UI display and reporting. A common query involves joining the base and translation tables while filtering by the session's language context. For example, to generate a report of all subscriptions with their descriptions in a specific language, one would use a query pattern such as: SELECT b.SUBSCRIPTION_ID, tl.SUBSCRIPTION_NAME, tl.DESCRIPTION FROM JTF_UM_SUBSCRIPTIONS_B b, JTF_UM_SUBSCRIPTIONS_TL tl WHERE b.SUBSCRIPTION_ID = tl.SUBSCRIPTION_ID AND tl.LANGUAGE = USERENV('LANG');. This table is also critical during the EBS multi-lingual setup process, where seed data translations are loaded, and for any customizations that involve displaying or reporting on subscription data in a localized manner.
Related Objects
The table has a direct and singular foreign key relationship, as documented in the provided metadata. It is dependent on the base subscription table.
- JTF_UM_SUBSCRIPTIONS_B: This is the base table referenced by JTF_UM_SUBSCRIPTIONS_TL. The relationship is defined by the foreign key column
JTF_UM_SUBSCRIPTIONS_TL.SUBSCRIPTION_IDreferencing the primary key of JTF_UM_SUBSCRIPTIONS_B. All translation records must correspond to a valid record in this base table.
Given its function, the table is also intrinsically linked to the Oracle Applications' Multi-lingual Engine (MLE) and the FND_LANGUAGES table, which contains the valid language codes used in the LANGUAGE column.
-
Table: JTF_UM_SUBSCRIPTIONS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_TL, object_name:JTF_UM_SUBSCRIPTIONS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_UM_SUBSCRIPTIONS_B , implementation_dba_data: JTF.JTF_UM_SUBSCRIPTIONS_TL ,
-
Table: JTF_UM_SUBSCRIPTIONS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_TL, object_name:JTF_UM_SUBSCRIPTIONS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_UM_SUBSCRIPTIONS_B , implementation_dba_data: JTF.JTF_UM_SUBSCRIPTIONS_TL ,
-
APPS.JTF_UM_APPROVAL_REQUESTS_PVT dependencies on JTF_UM_SUBSCRIPTIONS_TL
12.1.1
-
APPS.JTF_UM_SUBSCRIPTION_INFO dependencies on JTF_UM_SUBSCRIPTIONS_TL
12.1.1
-
APPS.JTF_UM_SUBSCRIPTION_INFO dependencies on JTF_UM_SUBSCRIPTIONS_TL
12.2.2
-
APPS.JTF_UM_APPROVAL_REQUESTS_PVT dependencies on JTF_UM_SUBSCRIPTIONS_TL
12.2.2
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG dependencies on JTF_UM_SUBSCRIPTIONS_TL
12.1.1
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG dependencies on JTF_UM_SUBSCRIPTIONS_TL
12.2.2
-
VIEW: JTF.JTF_UM_SUBSCRIPTIONS_TL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_UM_SUBSCRIPTIONS_TL#, status:VALID,
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG dependencies on FND_LANGUAGES
12.1.1
-
TRIGGER: APPS.JTF_UM_SUBSCRIPTIONS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_UM_SUBSCRIPTIONS_TL+, status:VALID,
-
VIEW: APPS.JTF_UM_SUBSCRIPTIONS_VL
12.2.2
-
VIEW: APPS.JTF_UM_SUBSCRIPTIONS_VL
12.1.1
-
TRIGGER: APPS.JTF_UM_SUBSCRIPTIONS_TL+
12.2.2
-
SYNONYM: APPS.JTF_UM_SUBSCRIPTIONS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_UM_SUBSCRIPTIONS_TL, status:VALID,
-
VIEW: JTF.JTF_UM_SUBSCRIPTIONS_TL#
12.2.2
-
SYNONYM: APPS.JTF_UM_SUBSCRIPTIONS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_UM_SUBSCRIPTIONS_TL, status:VALID,
-
View: JTF_UM_SUBSCRIPTIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_VL, object_name:JTF_UM_SUBSCRIPTIONS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS view for JTF_UM_SUBSCRIPTIONS_B and JTF_UM_SUBSCRIPTIONS_TL , implementation_dba_data: APPS.JTF_UM_SUBSCRIPTIONS_VL ,
-
View: JTF_UM_SUBSCRIPTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_VL, object_name:JTF_UM_SUBSCRIPTIONS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS view for JTF_UM_SUBSCRIPTIONS_B and JTF_UM_SUBSCRIPTIONS_TL , implementation_dba_data: APPS.JTF_UM_SUBSCRIPTIONS_VL ,
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG SQL Statements
12.2.2
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG SQL Statements
12.1.1
-
FUNCTION: APPS.JTF_UM_SUBSCRIPTIONS_TL=
12.2.2
-
FUNCTION: APPS.JTF_UM_SUBSCRIPTIONS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:JTF_UM_SUBSCRIPTIONS_TL=, status:VALID,
-
PACKAGE: APPS.JTF_UM_SUBSCRIPTION_INFO
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_UM_SUBSCRIPTION_INFO, status:VALID,
-
PACKAGE: APPS.JTF_UM_APPROVAL_REQUESTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_UM_APPROVAL_REQUESTS_PVT, status:VALID,
-
TABLE: JTF.JTF_UM_SUBSCRIPTIONS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_TL, object_name:JTF_UM_SUBSCRIPTIONS_TL, status:VALID,
-
TABLE: JTF.JTF_UM_SUBSCRIPTIONS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_TL, object_name:JTF_UM_SUBSCRIPTIONS_TL, status:VALID,
-
VIEW: APPS.JTF_UM_SUBSCRIPTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_VL, object_name:JTF_UM_SUBSCRIPTIONS_VL, status:VALID,
-
PACKAGE: APPS.JTF_UM_SUBSCRIPTION_INFO
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_UM_SUBSCRIPTION_INFO, status:VALID,
-
VIEW: APPS.JTF_UM_SUBSCRIPTIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_VL, object_name:JTF_UM_SUBSCRIPTIONS_VL, status:VALID,
-
Table: JTF_UM_SUBSCRIPTIONS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_B, object_name:JTF_UM_SUBSCRIPTIONS_B, status:VALID, product: JTF - CRM Foundation , description: An enrollment usually gives access to some specific part of the system through roles, permissions, and the responsibility defined for the enrollment. , implementation_dba_data: JTF.JTF_UM_SUBSCRIPTIONS_B ,
-
PACKAGE BODY: APPS.JTF_UM_SUBSCRIPTIONS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_UM_SUBSCRIPTIONS_PKG, status:VALID,
-
PACKAGE: APPS.JTF_UM_APPROVAL_REQUESTS_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_UM_APPROVAL_REQUESTS_PVT, status:VALID,
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG dependencies on FND_LOAD_UTIL
12.1.1
-
PACKAGE BODY: APPS.JTF_UM_SUBSCRIPTIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_UM_SUBSCRIPTIONS_PKG, status:VALID,
-
Table: JTF_UM_SUBSCRIPTIONS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_UM_SUBSCRIPTIONS_B, object_name:JTF_UM_SUBSCRIPTIONS_B, status:VALID, product: JTF - CRM Foundation , description: An enrollment usually gives access to some specific part of the system through roles, permissions, and the responsibility defined for the enrollment. , implementation_dba_data: JTF.JTF_UM_SUBSCRIPTIONS_B ,
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG dependencies on FND_LOAD_UTIL
12.2.2
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG dependencies on JTF_UM_SUBSCRIPTIONS_B
12.1.1
-
APPS.JTF_UM_SUBSCRIPTIONS_PKG dependencies on JTF_UM_SUBSCRIPTIONS_B
12.2.2
-
PACKAGE BODY: APPS.JTF_UM_SUBSCRIPTIONS_PKG
12.2.2
-
PACKAGE BODY: APPS.JTF_UM_SUBSCRIPTIONS_PKG
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA 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 FND Design Data
12.2.2