Search Results jtf_objects_b_pk
Overview
The JTF_OBJECTS_B table is a core metadata repository within the Oracle E-Business Suite CRM Foundation (JTF). It functions as a central registry for defining and storing details of application objects or modules across the system. Its primary role is to provide a standardized reference for various CRM and related components, enabling object-level integration, validation, and relationship mapping. The table is fundamental to the architecture of CRM, as evidenced by its extensive foreign key relationships with tables across Service (CS), Sales (IEU), Interaction Center (IEU), Contracts (OKS), and other product families. It provides the underlying structure for managing object-specific behaviors, such as note attachment sources, work item definitions, and service request linking rules.
Key Information Stored
The table's structure centers on a unique object identifier. While the full column list is not detailed in the provided metadata, the primary and foreign key relationships reveal its critical data points. The OBJECT_CODE column serves as the primary key (JTF_OBJECTS_B_PK) and is the unique identifier for a registered object. The APPLICATION_ID column is a foreign key to FND_APPLICATION, linking each object to its parent EBS application module. Although not listed, typical columns in such a metadata table would include OBJECT_NAME, DESCRIPTION, and various WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE). The data stored defines the universe of objects that can participate in CRM-centric processes.
Common Use Cases and Queries
A primary use case is resolving object codes to human-readable names for reports or integrations. For instance, when analyzing notes from JTF_NOTES_B, a query would join on SOURCE_OBJECT_CODE to get the object's name. The table is also crucial for validating object types in custom extensions or when configuring object-specific rules. A common query pattern is to list all registered objects for a specific application or module. Given the user's search for "oks_rules_dff," a relevant scenario might involve querying JTF_OBJECTS_B to identify the object code associated with OKS rules, which could then be used to query descriptive flexfield (DFF) metadata tables.
-- Example: Resolve object codes for notes SELECT n.NOTE_ID, n.SOURCE_OBJECT_CODE, o.OBJECT_NAME FROM JTF_NOTES_B n, JTF_OBJECTS_B o WHERE n.SOURCE_OBJECT_CODE = o.OBJECT_CODE; -- Example: Find objects related to the OKS module SELECT OBJECT_CODE, OBJECT_NAME FROM JTF_OBJECTS_B WHERE APPLICATION_ID = (SELECT APPLICATION_ID FROM FND_APPLICATION WHERE APPLICATION_SHORT_NAME = 'OKS');
Related Objects
As per the metadata, JTF_OBJECTS_B has a vast network of dependencies, underscoring its central role. Key related objects include:
- FND_APPLICATION: Parent table providing the application context.
- JTF_NOTES_B: References SOURCE_OBJECT_CODE to identify the entity a note is attached to.
- OKS_K_ORDER_CONTACTS, OKL_CRITERIA_B: Used in Contracts (OKS) and Lease Management (OKL) for object association.
- CS_INCIDENT_LINKS, CS_SR_LINK_VALID_OBJ: Core Service (CS) tables using it to define valid subject and object types for service request linking.
- IEU_MSG_MESSAGES, IEU_UWQM_ITEMS: Interaction Center tables referencing work item object codes.
- JTF_IH_ACTIVITIES: References the object code for document associations in interaction history.
This extensive referencing makes JTF_OBJECTS_B a critical point of integration for any customization or data analysis involving CRM object relationships.
-
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 ,
-
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 ,
-
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 ,