Search Results predicate_alias
Overview
JTF_OBJECTS_B is a CRM Foundation (JTF) reference table that stores the details of objects (modules) known to the Oracle E-Business Suite. In practice, it functions as a central registry of object types — such as resources, tasks, notes, service requests, and contracts — that other applications reference whenever they need to associate records, links, notes, or work items with a specific business object. The table resides in the JTF schema, carries a VALID status in 12.1.1 and 12.2.2, and is dated by standard WHO audit columns.
From a data modeling perspective, the documented foreign-key structure classifies JTF_OBJECTS_B as hub-leaning. This is a heuristic suggestion rather than an enforced construct: the table holds a stable set of object definitions keyed by a single business identifier, and is referenced by a very large number of downstream tables. It is therefore best modeled as a hub (or reference/lookup dimension) around which satellites such as JTF_OBJECTS_TL provide descriptive attributes.
Key Information Stored
The table contains 48 documented columns. The primary key is JTF_OBJECTS_B_PK, defined on OBJECT_CODE, which is the surrogate-level identifier and the value most foreign tables join against. A unique index, JTF_OBJECTS_B_U1, is defined on (OBJECT_CODE, ZD_EDITION_NAME), making OBJECT_CODE the business-key candidate once the edition column is considered.
- OBJECT_CODE — the primary object identifier referenced by downstream tables.
- OBJECT_FUNCTION and OBJECT_PARAMETERS — the function and runtime parameters associated with the object.
- SELECT_ID, SELECT_NAME, SELECT_DETAILS — selection and display metadata used to render the object.
- FROM_TABLE, WHERE_CLAUSE, ORDER_BY_CLAUSE, INACTIVE_CLAUSE, PREDICATE_ALIAS — query-construction fragments that drive dynamic LOVs and list generation.
- URL, LAUNCH_METHOD, WEB_FUNCTION_ID, WEB_FUNCTION_NAME, WEB_FUNCTION_PARAMETERS, OA_WEB_FUNCTION_NAME, OA_WEB_FUNCTION_PARAMETERS — launch/navigation definitions for OAF and web-based navigation.
- APPLICATION_ID, SECURITY_GROUP_ID — the owning application and security group, with foreign keys to FND_APPLICATION and FND_SECURITY_GROUPS.
- START_DATE_ACTIVE, END_DATE_ACTIVE, SEEDED_FLAG — effective dating and seeded versus user-defined indicators.
- FND_OBJ_NAME — the underlying FND object name associated with the registry entry.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard concurrency and audit columns.
- ATTRIBUTE1–ATTRIBUTE15, ATTRIBUTE_CATEGORY — descriptive flexfield storage.
Common Use Cases and Queries
Because JTF_OBJECTS_B is a lookup table, most usage centers on resolving an OBJECT_CODE to its owning application or launch definition, or on validating the set of object types permitted for a given linking table.
- Resolving an object to its application:
SELECT o.object_code, o.object_function, a.application_name
FROM jtf_objects_b o
JOIN fnd_application a ON a.application_id = o.application_id; - Listing active, non-seeded object types:
SELECT object_code, fnd_obj_name
FROM jtf_objects_b
WHERE seeded_flag = 'N'
AND SYSDATE BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE); - Locating launch definitions for a web-enabled object:
SELECT object_code, web_function_name, oa_web_function_name
FROM jtf_objects_b WHERE url IS NOT NULL; - Reconciling link tables against the registry, for example joining CS_KB_ELEMENT_LINKS.OBJECT_CODE back to JTF_OBJECTS_B to identify orphaned or unregistered object codes.
Typical reporting scenarios include auditing which objects are exposed as note or work-item types, verifying translated descriptions via JTF_OBJECTS_TL, and troubleshooting LOV or navigation failures where an object code has been inactivated.
Related Objects
JTF_OBJECTS_B is referenced by an extensive set of dependent tables, confirming its role as a shared hub for CRM, Service, Contracts, and Lease Management modules.
- JTF_OBJECTS_TL — translated descriptions, joined on OBJECT_CODE.
- JTF_NOTES_B and JTF_NOTES_SOURCE_TYPE_MAP — join on SOURCE_OBJECT_CODE; both rely on JTF_OBJECTS_B to classify note sources.
- CS_INCIDENT_LINKS — joins on SUBJECT_TYPE and OBJECT_TYPE; a principal consumer for service-request linking.
- CS_KB_ELEMENT_LINKS and CS_KB_SET_LINKS — join on OBJECT_CODE for knowledge-base associations.
- JTF_TASKS_B — joins on SOURCE_OBJECT_TYPE_CODE, defining the object a task is raised against.
- JTF_IH_ACTIVITIES — joins on DOC_REF for interaction history references.
- OKC_RULES_B and OKC_K_ITEMS — join on JTOT_OBJECT1_CODE (and additional JTOT object columns in OKC_RULES_B).
- OKS_K_ORDER_CONTACTS and OKS_RULES_DFF — join on JTOT_OBJECT_CODE and JTOT_OBJECT1_CODE, respectively, within Service Contracts.
- IEU_MSG_MESSAGES and IEU_UWQM_ITEMS — join on WORKITEM_OBJ_CODE for work-item classification.
- FND_APPLICATION and FND_SECURITY_GROUPS — the two tables that JTF_OBJECTS_B itself references via APPLICATION_ID and SECURITY_GROUP_ID.
-
Table: JTF_OBJECTS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_OBJECTS_B, object_name:JTF_OBJECTS_B, status:VALID, product: JTF - CRM Foundation , description: This table stores the details of objects(modules). , implementation_dba_data: JTF.JTF_OBJECTS_B ,
-
Table: JTF_OBJECTS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_OBJECTS_B, object_name:JTF_OBJECTS_B, status:VALID, product: JTF - CRM Foundation , description: This table stores the details of objects(modules). , implementation_dba_data: JTF.JTF_OBJECTS_B ,
-
VIEW: JTF.JTF_OBJECTS_B#
12.2.2
-
VIEW: JTF.JTF_OBJECTS_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_OBJECTS_B#, status:VALID,
-
View: JTF_OBJECTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_OBJECTS_VL, object_name:JTF_OBJECTS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_OBJECTS_B and JTF_OBJECTS_TL. , implementation_dba_data: APPS.JTF_OBJECTS_VL ,
-
TABLE: JTF.JTF_OBJECTS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_OBJECTS_B, object_name:JTF_OBJECTS_B, status:VALID,
-
View: JTF_OBJECTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_OBJECTS_VL, object_name:JTF_OBJECTS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_OBJECTS_B and JTF_OBJECTS_TL. , implementation_dba_data: APPS.JTF_OBJECTS_VL ,
-
TABLE: JTF.JTF_OBJECTS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_OBJECTS_B, object_name:JTF_OBJECTS_B, status:VALID,
-
VIEW: APPS.JTF_OBJECTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_OBJECTS_VL, object_name:JTF_OBJECTS_VL, status:VALID,
-
VIEW: APPS.JTF_OBJECTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_OBJECTS_VL, object_name:JTF_OBJECTS_VL, status:VALID,
-
APPS.JTF_OBJECTS_PKG SQL Statements
12.1.1
-
APPS.JTF_OBJECTS_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.JTF_OBJECTS_PKG
12.1.1
-
PACKAGE BODY: APPS.JTF_OBJECTS_PKG
12.2.2
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,