Search Results jtf_perz_lf_object_pk
Overview
The JTF_PERZ_LF_OBJECT table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the primary repository for storing instantiated look and feel objects within the application's personalization framework. These objects are concrete instances created based on the metadata definitions stored in the related tables JTF_PERZ_LF_OBJECT_TYPE and JTF_PERZ_LF_ATTRIB. Its role is to persist the runtime, user-facing components that define the visual and functional behavior of personalized application regions, enabling the system to render customized user interfaces.
Key Information Stored
While the provided metadata does not list specific column details, the table's primary function dictates the nature of its key columns. The central column is OBJECT_ID, which serves as the unique identifier (Primary Key: JTF_PERZ_LF_OBJECT_PK) for each look and feel object instance. Other columns would logically store the object's instance name, a reference to its parent object type from JTF_PERZ_LF_OBJECT_TYPE, and values for the various attributes defined in JTF_PERZ_LF_ATTRIB. These attribute values collectively define the specific properties—such as colors, labels, visibility, or behavior—of the personalized UI component.
Common Use Cases and Queries
This table is primarily accessed for queries related to application personalization setup and troubleshooting. A common use case involves identifying all active look and feel objects of a specific type for analysis or migration. Developers and administrators may query this table to audit personalized UI components or to diagnose rendering issues by examining the stored attribute values. A typical SQL pattern would join this table with its metadata definitions.
SELECT obj.object_id, obj.object_name, type.type_name, attr.attribute_name
FROM jtf_perz_lf_object obj,
jtf_perz_lf_object_type type,
jtf_perz_lf_attrib attr
WHERE obj.object_type_id = type.object_type_id
AND type.object_type_id = attr.object_type_id
ORDER BY obj.object_id;
Related Objects
The table maintains documented relationships with several other key personalization objects within the JTF schema, forming a critical part of the data model.
- Primary Key: JTF_PERZ_LF_OBJECT_PK on column OBJECT_ID.
- Referenced by Foreign Key: The JTF_PERZ_OBJ_MAP table references JTF_PERZ_LF_OBJECT via the column JTF_PERZ_OBJ_MAP.OBJECT_ID. This relationship maps the instantiated look and feel objects to their specific application contexts or assignments.
- Parent Metadata Tables: While not listed with formal foreign keys in the provided excerpt, the table's description explicitly states that instances are created from meta data defined in JTF_PERZ_LF_OBJECT_TYPE (object classifications) and JTF_PERZ_LF_ATTRIB (definable attributes).
-
Table: JTF_PERZ_LF_OBJECT
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_PERZ_LF_OBJECT, object_name:JTF_PERZ_LF_OBJECT, status:VALID, product: JTF - CRM Foundation , description: JTF_PERZ_LF_OBJECT stores instances of look and feel objects created from the meta data defined in JTF_PERZ_LF_OBJECT_TYPE and JTF_PERZ_LF_ATTRIB. , implementation_dba_data: JTF.JTF_PERZ_LF_OBJECT ,
-
Table: JTF_PERZ_LF_OBJECT
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_PERZ_LF_OBJECT, object_name:JTF_PERZ_LF_OBJECT, status:VALID, product: JTF - CRM Foundation , description: JTF_PERZ_LF_OBJECT stores instances of look and feel objects created from the meta data defined in JTF_PERZ_LF_OBJECT_TYPE and JTF_PERZ_LF_ATTRIB. , implementation_dba_data: JTF.JTF_PERZ_LF_OBJECT ,