Search Results jtf_nav_tree_roots_b
Overview
JTF_NAV_TREE_ROOTS_B is the base table in the JTF (CRM Foundation) schema that stores the tree root definition for each navigation "view by" configuration in Oracle EBS. It is a core metadata component of the Oracle CRM Foundation navigation framework, which governs how hierarchical navigators (such as the CRM Resource Manager, Territory Manager, and various self-service trees) organize and render their top-level root nodes. Each row represents a distinct tree root, and the table acts as the anchor point from which node types, translated names, and view-by attributes are resolved at runtime.
From a Data Vault modeling perspective, the mined foreign-key structure classifies this object as hub-leaning. That is offered as a modeling suggestion rather than a definitive architectural statement: the table carries a single surrogate key (TREE_ROOT_ID), a small set of descriptive attributes, and inbound references from related tables, which is consistent with hub-like behavior at the center of the navigation relationship graph.
Key Information Stored
The table is documented with 11 columns in the 12.2.2 physical schema. The most significant are:
TREE_ROOT_ID— the surrogate primary key, enforced byJTF_NAV_TREE_ROOTS_B_PK, uniquely identifying each tree root.ROOT_VALUE— the business identifier for the root; together withZD_EDITION_NAMEit forms the unique indexJTF_NAV_TREE_ROOTS_B_U2.VIEWBY_ID— foreign key toJTF_NAV_VIEWBYS_B, associating the root with a specific "view by" dimension.SECURITY_GROUP_ID— foreign key toFND_SECURITY_GROUPS, controlling row-level security visibility.SEQUENCE_NUMBER— orders roots within a view-by grouping.ZD_EDITION_NAME— editioning column supporting online patching in 12.2.x; withTREE_ROOT_IDit forms unique indexJTF_NAV_TREE_ROOTS_B_U1.- Standard audit columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN.
Note that TREE_ROOT_ID functions both as surrogate PK and as a business-key component in U1; ROOT_VALUE is the primary business-key candidate via U2.
Common Use Cases and Queries
Typical usage includes on-site diagnosis of navigation failures, populating translated root names, and reporting on navigator configuration. A common join retrieves roots with their view-by context:
SELECT r.TREE_ROOT_ID, r.ROOT_VALUE, v.VIEWBY_NAME, r.SEQUENCE_NUMBER
FROM JTF_NAV_TREE_ROOTS_B r, JTF_NAV_VIEWBYS_B v
WHERE r.VIEWBY_ID = v.VIEWBY_ID;
To display localized root labels, join the translation table on TREE_ROOT_ID:
SELECT b.TREE_ROOT_ID, t.TREE_ROOT_NAME
FROM JTF_NAV_TREE_ROOTS_B b, JTF_NAV_TREE_ROOTS_TL t
WHERE b.TREE_ROOT_ID = t.TREE_ROOT_ID
AND t.LANGUAGE = USERENV('LANG');
Security-filtered reporting should additionally constrain SECURITY_GROUP_ID against FND_SECURITY_GROUPS to respect the active responsibility's group.
Related Objects
The principal dependent and referenced objects are:
JTF_NAV_TREE_ROOTS_TL— translation table keyed onTREE_ROOT_ID; stores language-specific root names.JTF_NAV_NODE_TYPES— referencesTREE_ROOT_ID, defining node types belonging to each root.JTF_NAV_VIEWBYS_B— parent ofVIEWBY_ID; defines the view-by grouping.FND_SECURITY_GROUPS— parent ofSECURITY_GROUP_ID; drives row-level security.
These four represent the primary join surface for both runtime navigation resolution and administrative reporting queries against the JTF navigation framework.
-
Table: JTF_NAV_TREE_ROOTS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_B, object_name:JTF_NAV_TREE_ROOTS_B, status:VALID, product: JTF - CRM Foundation , description: Base table that stores the tree root for each view by. , implementation_dba_data: JTF.JTF_NAV_TREE_ROOTS_B ,
-
Table: JTF_NAV_TREE_ROOTS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_B, object_name:JTF_NAV_TREE_ROOTS_B, status:VALID, product: JTF - CRM Foundation , description: Base table that stores the tree root for each view by. , implementation_dba_data: JTF.JTF_NAV_TREE_ROOTS_B ,
-
APPS.JTF_NAV_TREE_ROOTS_PKG SQL Statements
12.2.2
-
VIEW: JTF.JTF_NAV_TREE_ROOTS_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_NAV_TREE_ROOTS_B#, status:VALID,
-
SYNONYM: APPS.JTF_NAV_TREE_ROOTS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_NAV_TREE_ROOTS_B, status:VALID,
-
APPS.JTF_NAV_TREE_ROOTS_PKG SQL Statements
12.1.1
-
VIEW: JTF.JTF_NAV_TREE_ROOTS_B#
12.2.2
-
SYNONYM: APPS.JTF_NAV_TREE_ROOTS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_NAV_TREE_ROOTS_B, status:VALID,
-
VIEW: APPS.JTF_NAV_TREE_ROOTS_VL
12.2.2
-
VIEW: APPS.JTF_NAV_TREE_ROOTS_VL
12.1.1
-
TRIGGER: APPS.JTF_NAV_TREE_ROOTS_B+
12.2.2
-
TRIGGER: APPS.JTF_NAV_TREE_ROOTS_B+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_NAV_TREE_ROOTS_B+, status:VALID,
-
PACKAGE BODY: APPS.JTF_NAV_TREE_ROOTS_PKG
12.1.1
-
View: JTF_NAV_TREE_ROOTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_VL, object_name:JTF_NAV_TREE_ROOTS_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_TREE_ROOTS_VL ,
-
PACKAGE BODY: APPS.JTF_NAV_TREE_ROOTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_NAV_TREE_ROOTS_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_NAV_TREE_ROOTS_PKG
12.2.2
-
FUNCTION: APPS.JTF_NAV_TREE_ROOTS_B=
12.2.2
-
Table: JTF_NAV_TREE_ROOTS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_TL, object_name:JTF_NAV_TREE_ROOTS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table which stores the language dependent text to be shown on the tree root. , implementation_dba_data: JTF.JTF_NAV_TREE_ROOTS_TL ,
-
TABLE: JTF.JTF_NAV_TREE_ROOTS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_B, object_name:JTF_NAV_TREE_ROOTS_B, status:VALID,
-
PACKAGE BODY: APPS.JTF_NAV_TREE_ROOTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_NAV_TREE_ROOTS_PKG, status:VALID,
-
FUNCTION: APPS.JTF_NAV_TREE_ROOTS_B=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:JTF_NAV_TREE_ROOTS_B=, status:VALID,
-
Table: JTF_NAV_TREE_ROOTS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_TL, object_name:JTF_NAV_TREE_ROOTS_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table which stores the language dependent text to be shown on the tree root. , implementation_dba_data: JTF.JTF_NAV_TREE_ROOTS_TL ,
-
TABLE: JTF.JTF_NAV_TREE_ROOTS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_B, object_name:JTF_NAV_TREE_ROOTS_B, status:VALID,
-
View: JTF_NAV_TREE_ROOTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_VL, object_name:JTF_NAV_TREE_ROOTS_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_TREE_ROOTS_VL ,
-
VIEW: APPS.JTF_NAV_TREE_ROOTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_VL, object_name:JTF_NAV_TREE_ROOTS_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.JTF_NAV_TREE_ROOTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_NAV_TREE_ROOTS_VL, object_name:JTF_NAV_TREE_ROOTS_VL, status:VALID,
-
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
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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_TREE_ROOTS_PKG dependencies on JTF_NAV_TREE_ROOTS_B
12.2.2
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on JTF_NAV_TREE_ROOTS_B
12.1.1
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on JTF_NAV_TREE_ROOTS_S
12.2.2
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on DUAL
12.2.2
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on DUAL
12.1.1
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on JTF_NAV_TREE_ROOTS_S
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
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on JTF_NAV_TREE_ROOTS_TL
12.1.1
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on JTF_NAV_TREE_ROOTS_TL
12.2.2
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on JTF_NAV_VIEWBYS_B
12.1.1
-
APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on JTF_NAV_VIEWBYS_B
12.2.2