Search Results jtf_nav_viewbys_tl
Overview
JTF_NAV_VIEWBYS_TL is a translation (TL) table in the JTF schema, the CRM Foundation product within Oracle E-Business Suite. It stores the multilingual labels that populate "View By" drop-down lists in CRM navigation user interfaces. Each row pairs a view-by identifier with a language-specific label, enabling the same navigational control to present localized text to users across different language installations. The table belongs to the standard EBS translated-table pattern, in which a base (B) table holds language-independent attributes and the TL table holds the translated descriptive columns keyed by language.
From a Data Vault modeling perspective, the mined relationship structure classifies this object as satellite-leaning. The VIEWBY_ID foreign key to JTF_NAV_VIEWBYS_B positions the TL table as an attribute satellite hanging off the base entity hub, with LANGUAGE acting as part of the descriptive context and the composite key. This classification is a heuristic suggestion drawn from the FK topology and should be treated as modeling guidance rather than a declared design intent.
Key Information Stored
The table contains eleven documented columns. The most significant are:
VIEWBY_ID— the identifier of the view-by definition; part of the composite primary key and a foreign key toJTF_NAV_VIEWBYS_B.LANGUAGE— the translation language of the row; the second component of the primary key.VIEWBY_LABEL— the translated text displayed in the drop-down list.SOURCE_LANG— the source language from which the translation was derived.SECURITY_GROUP_ID— the security group that governs row access; foreign key toFND_SECURITY_GROUPS.ZD_EDITION_NAME— the edition indicator used by EBS online patching (12.2.x).CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— the standard EBS audit "Who" columns.
The primary key is defined by JTF_NAV_VIEWBYS_TL_PK on (VIEWBY_ID, LANGUAGE). The unique index JTF_NAV_VIEWBYS_TL_U1 on (VIEWBY_ID, LANGUAGE, ZD_EDITION_NAME) is the business-key candidate, extending the PK with the edition name to support multi-edition coexistence during online patching.
Common Use Cases and Queries
The primary use case is retrieving a localized label for a view-by control. A typical query joins the TL table to the base table filtered by language:
- Resolve a display label:
SELECT b.viewby_id, t.viewby_label FROM jtf_nav_viewbys_b b, jtf_nav_viewbys_tl t WHERE b.viewby_id = t.viewby_id AND t.language = USERENV('LANG'). - Audit missingor stale translations: count languages per
VIEWBY_IDin the TL table against the expected language set. - Migration and comparison reporting: extract
VIEWBY_ID,VIEWBY_LABEL,LANGUAGE, andSOURCE_LANGto verify translation coverage before upgrades or localization rollouts. - Edition-aware extraction for 12.2.x: include
ZD_EDITION_NAMEin the predicate to isolate the active edition.
Related Objects
The following objects are most directly related to this table:
JTF_NAV_VIEWBYS_B— the base table; join onJTF_NAV_VIEWBYS_TL.VIEWBY_ID = JTF_NAV_VIEWBYS_B.VIEWBY_ID(enforced FK).FND_SECURITY_GROUPS— referenced bySECURITY_GROUP_IDfor row-level security partitioning.JTF_NAV_VIEWBYS_TL_PK— the primary key constraint on (VIEWBY_ID,LANGUAGE).JTF_NAV_VIEWBYS_TL_U1— the unique index supporting the business key withZD_EDITION_NAME.FND_LANGUAGES— the reference for valid values inLANGUAGEandSOURCE_LANG.
-
Table: JTF_NAV_VIEWBYS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_VIEWBYS_TL, object_name:JTF_NAV_VIEWBYS_TL, status:VALID, product: JTF - CRM Foundation , description: JTF_NAV_VIEWBYS_TL stores information about the lables that appear in the drop down list. Each row includes the value, its translated data, the translation language and the source language. , implementation_dba_data: JTF.JTF_NAV_VIEWBYS_TL ,
-
Table: JTF_NAV_VIEWBYS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_VIEWBYS_TL, object_name:JTF_NAV_VIEWBYS_TL, status:VALID, product: JTF - CRM Foundation , description: JTF_NAV_VIEWBYS_TL stores information about the lables that appear in the drop down list. Each row includes the value, its translated data, the translation language and the source language. , implementation_dba_data: JTF.JTF_NAV_VIEWBYS_TL ,
-
APPS.JTF_NAV_VIEWBYS_PKG SQL Statements
12.2.2
-
APPS.JTF_NAV_VIEWBYS_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_NAV_VIEWBYS_PKG
12.1.1
-
VIEW: JTF.JTF_NAV_VIEWBYS_TL#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_NAV_VIEWBYS_TL#, status:VALID,
-
PACKAGE BODY: APPS.JTF_NAV_VIEWBYS_PKG
12.2.2
-
VIEW: APPS.JTF_NAV_VIEWBYS_VL
12.2.2
-
SYNONYM: APPS.JTF_NAV_VIEWBYS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_NAV_VIEWBYS_TL, status:VALID,
-
SYNONYM: APPS.JTF_NAV_VIEWBYS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_NAV_VIEWBYS_TL, status:VALID,
-
TRIGGER: APPS.JTF_NAV_VIEWBYS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_NAV_VIEWBYS_TL+, status:VALID,
-
VIEW: JTF.JTF_NAV_VIEWBYS_TL#
12.2.2
-
VIEW: APPS.JTF_NAV_VIEWBYS_VL
12.1.1
-
TRIGGER: APPS.JTF_NAV_VIEWBYS_TL+
12.2.2
-
TABLE: JTF.JTF_NAV_VIEWBYS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_VIEWBYS_TL, object_name:JTF_NAV_VIEWBYS_TL, status:VALID,
-
FUNCTION: APPS.JTF_NAV_VIEWBYS_TL=
12.2.2
-
PACKAGE BODY: APPS.JTF_NAV_VIEWBYS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_NAV_VIEWBYS_PKG, status:VALID,
-
Table: JTF_NAV_VIEWBYS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_VIEWBYS_B, object_name:JTF_NAV_VIEWBYS_B, status:VALID, product: JTF - CRM Foundation , description: Base table that stores the view-bys associated with each tab. , implementation_dba_data: JTF.JTF_NAV_VIEWBYS_B ,
-
Table: JTF_NAV_VIEWBYS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_VIEWBYS_B, object_name:JTF_NAV_VIEWBYS_B, status:VALID, product: JTF - CRM Foundation , description: Base table that stores the view-bys associated with each tab. , implementation_dba_data: JTF.JTF_NAV_VIEWBYS_B ,
-
FUNCTION: APPS.JTF_NAV_VIEWBYS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:JTF_NAV_VIEWBYS_TL=, status:VALID,
-
TABLE: JTF.JTF_NAV_VIEWBYS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_VIEWBYS_TL, object_name:JTF_NAV_VIEWBYS_TL, status:VALID,
-
PACKAGE BODY: APPS.JTF_NAV_VIEWBYS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_NAV_VIEWBYS_PKG, status:VALID,
-
View: JTF_NAV_VIEWBYS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NAV_VIEWBYS_VL, object_name:JTF_NAV_VIEWBYS_VL, status:VALID, product: JTF - CRM Foundation , description: View based on the base and translation tables which filters on the user language. , implementation_dba_data: APPS.JTF_NAV_VIEWBYS_VL ,
-
View: JTF_NAV_VIEWBYS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NAV_VIEWBYS_VL, object_name:JTF_NAV_VIEWBYS_VL, status:VALID, product: JTF - CRM Foundation , description: View based on the base and translation tables which filters on the user language. , implementation_dba_data: APPS.JTF_NAV_VIEWBYS_VL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.JTF_NAV_VIEWBYS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NAV_VIEWBYS_VL, object_name:JTF_NAV_VIEWBYS_VL, status:VALID,
-
VIEW: APPS.JTF_NAV_VIEWBYS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NAV_VIEWBYS_VL, object_name:JTF_NAV_VIEWBYS_VL, status:VALID,
-
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 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.JTF_NAV_VIEWBYS_PKG dependencies on JTF_NAV_VIEWBYS_TL
12.1.1
-
APPS.JTF_NAV_VIEWBYS_PKG dependencies on JTF_NAV_VIEWBYS_TL
12.2.2
-
APPS.JTF_NAV_VIEWBYS_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.JTF_NAV_VIEWBYS_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.JTF_NAV_VIEWBYS_PKG dependencies on JTF_NAV_VIEWBYS_B
12.2.2
-
APPS.JTF_NAV_VIEWBYS_PKG dependencies on JTF_NAV_VIEWBYS_B
12.1.1
-
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
-
12.2.2 DBA Data
12.2.2
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,