Search Results jtf_perz_profile_attrib
Overview
The JTF_PERZ_PROFILE_ATTRIB table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It functions as the central repository for storing the specific attributes that define a personalization profile. Personalization profiles are a key mechanism within Oracle EBS for tailoring the application's behavior, user interface, and data presentation to individual users, responsibilities, or other business entities. This table provides the granular, attribute-level storage that enables the CRM and related applications to deliver customized user experiences and enforce context-specific business rules. Its role is critical for the personalization engine, as it holds the concrete values that implement the logic defined at the profile level.
Key Information Stored
The table's primary purpose is to associate a profile with its constituent attributes and their values. While the full column list is not detailed in the provided metadata, the structure is defined by its primary and foreign key relationships. The key column is PROFILE_ATTRIB_ID, which serves as the unique identifier for each attribute record. The PROFILE_ID column is a foreign key that links each attribute to its parent profile in the JTF_PERZ_PROFILE table. Other typical columns in such a structure would include an attribute name or code column (e.g., ATTRIBUTE_CODE), a column to store the attribute's value (e.g., ATTRIBUTE_VALUE), and potentially columns for data type, effective dates, and creation/modification audit information (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE).
Common Use Cases and Queries
This table is primarily accessed for querying and managing the active personalization settings within the system. Common operational and reporting scenarios include auditing the personalization rules applied to a specific user or responsibility, troubleshooting application behavior by checking configured attribute values, and performing data fixes. A typical query would join this table to its parent profile table to retrieve a complete set of attributes for a given profile name or ID. For example:
- Retrieve all attributes for a specific profile:
SELECT attrib.* FROM jtf.jtf_perz_profile_attrib attrib, jtf.jtf_perz_profile prof WHERE attrib.profile_id = prof.profile_id AND prof.profile_name = 'CUSTOM_SERVICE_PROFILE'; - Find profiles containing a specific attribute value:
SELECT prof.profile_name, attrib.attribute_value FROM jtf.jtf_perz_profile_attrib attrib, jtf.jtf_perz_profile prof WHERE attrib.profile_id = prof.profile_id AND attrib.attribute_code = 'DISPLAY_FORMAT' AND attrib.attribute_value = 'COMPACT';
Direct DML operations on this table are generally performed by the application's personalization administration interfaces or underlying APIs, not manually.
Related Objects
The JTF_PERZ_PROFILE_ATTRIB table has a direct and essential relationship with the JTF_PERZ_PROFILE table, which stores the header-level profile definition. As documented in the provided metadata:
- Primary Key: JTF_PERZ_PROFILE_ATTRIB_PK on the column PROFILE_ATTRIB_ID.
- Foreign Key (References): The column JTF_PERZ_PROFILE_ATTRIB.PROFILE_ID references the JTF_PERZ_PROFILE table. This relationship enforces that every attribute record must be associated with a valid, existing profile header.
This table is also likely referenced by various CRM personalization APIs and user interface components that read and apply profile attribute settings. Views may exist to simplify access to joined profile and attribute data, though they are not specified in the provided excerpt.
-
Table: JTF_PERZ_PROFILE_ATTRIB
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_PERZ_PROFILE_ATTRIB, object_name:JTF_PERZ_PROFILE_ATTRIB, status:VALID, product: JTF - CRM Foundation , description: JTF_PERZ_PROFILE_ATTRIB stores the attributes associated with a personalization profile. , implementation_dba_data: JTF.JTF_PERZ_PROFILE_ATTRIB ,
-
Table: JTF_PERZ_PROFILE_ATTRIB
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_PERZ_PROFILE_ATTRIB, object_name:JTF_PERZ_PROFILE_ATTRIB, status:VALID, product: JTF - CRM Foundation , description: JTF_PERZ_PROFILE_ATTRIB stores the attributes associated with a personalization profile. , implementation_dba_data: JTF.JTF_PERZ_PROFILE_ATTRIB ,
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE_ATTRIB
12.1.1
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE_ATTRIB
12.2.2
-
APPS.JTF_PERZ_PROFILE_PVT SQL Statements
12.2.2
-
VIEW: JTF.JTF_PERZ_PROFILE_ATTRIB#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_PERZ_PROFILE_ATTRIB#, status:VALID,
-
TRIGGER: APPS.JTF_PERZ_PROFILE_ATTRIB+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_PERZ_PROFILE_ATTRIB+, status:VALID,
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE_ATTRIB_S
12.1.1
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE_ATTRIB_S
12.2.2
-
TRIGGER: APPS.JTF_PERZ_PROFILE_ATTRIB+
12.2.2
-
APPS.JTF_PERZ_PROFILE_PVT SQL Statements
12.1.1
-
VIEW: JTF.JTF_PERZ_PROFILE_ATTRIB#
12.2.2
-
SYNONYM: APPS.JTF_PERZ_PROFILE_ATTRIB
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_PERZ_PROFILE_ATTRIB, status:VALID,
-
SYNONYM: APPS.JTF_PERZ_PROFILE_ATTRIB
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_PERZ_PROFILE_ATTRIB, status:VALID,
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE
12.1.1
-
TABLE: JTF.JTF_PERZ_PROFILE_ATTRIB
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_PERZ_PROFILE_ATTRIB, object_name:JTF_PERZ_PROFILE_ATTRIB, status:VALID,
-
TABLE: JTF.JTF_PERZ_PROFILE_ATTRIB
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_PERZ_PROFILE_ATTRIB, object_name:JTF_PERZ_PROFILE_ATTRIB, status:VALID,
-
FUNCTION: APPS.JTF_PERZ_PROFILE_ATTRIB=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:JTF_PERZ_PROFILE_ATTRIB=, status:VALID,
-
FUNCTION: APPS.JTF_PERZ_PROFILE_ATTRIB=
12.2.2
-
Table: JTF_PERZ_PROFILE
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_PERZ_PROFILE, object_name:JTF_PERZ_PROFILE, status:VALID, product: JTF - CRM Foundation , description: JTF_PERZ_PROFILE stores the personalization tag or profile for an entity. The entity could be a user, an object, a group etc. , implementation_dba_data: JTF.JTF_PERZ_PROFILE ,
-
Table: JTF_PERZ_PROFILE
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_PERZ_PROFILE, object_name:JTF_PERZ_PROFILE, status:VALID, product: JTF - CRM Foundation , description: JTF_PERZ_PROFILE stores the personalization tag or profile for an entity. The entity could be a user, an object, a group etc. , implementation_dba_data: JTF.JTF_PERZ_PROFILE ,
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on DUAL
12.1.1
-
PACKAGE BODY: APPS.JTF_PERZ_PROFILE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_PERZ_PROFILE_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_PERZ_PROFILE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_PERZ_PROFILE_PVT, status:VALID,
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on DUAL
12.2.2
-
PACKAGE BODY: APPS.JTF_PERZ_PROFILE_PVT
12.1.1
-
PACKAGE BODY: APPS.JTF_PERZ_PROFILE_PVT
12.2.2
-
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 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA 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
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on FND_API
12.2.2
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on FND_API
12.1.1
-
12.2.2 DBA Data
12.2.2
-
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
-
PACKAGE: SYS.DBMS_STANDARD
12.2.2
owner:SYS, object_type:PACKAGE, object_name:DBMS_STANDARD, status:VALID,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1