Search Results jtf_perz_profile
Overview
The JTF_PERZ_PROFILE table is a core repository within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the master definition table for personalization profiles, which are configurable tags or sets of rules applied to various entities across the system. These entities can include users, objects, groups, or other business components. The table's primary role is to store the unique identifier and metadata for each profile, enabling the EBS personalization engine to dynamically control the presentation, behavior, and data visibility of application components based on defined criteria. This functionality is fundamental for creating tailored user experiences and enforcing context-specific business rules without code modification.
Key Information Stored
While the provided metadata does not list specific columns, the structure and relationships indicate the table's critical data elements. The primary key, PROFILE_ID, is a unique numeric identifier for each personalization profile. This key is extensively referenced by numerous child tables that store the detailed components of a profile. Other columns typically found in such a definition table would include profile name, description, effective dates (START_DATE_ACTIVE, END_DATE_ACTIVE), entity type or application module context, and creation/update audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE). The table essentially acts as a header, with the detailed attribute values, data defaults, and lookup values stored in related tables.
Common Use Cases and Queries
A primary use case involves auditing and managing personalization setups. Administrators may query the table to list all defined profiles or to investigate profiles linked to a specific entity, such as a mobile site (via JTF_MSITES_B). Common reporting needs include identifying profiles that are currently active or those created by a particular user. Sample SQL patterns include fetching a basic profile list and joining with related data tables for a comprehensive view.
- Listing active profiles:
SELECT profile_id, profile_name FROM jtf.jtf_perz_profile WHERE SYSDATE BETWEEN start_date_active AND NVL(end_date_active, SYSDATE); - Finding profiles used by a specific mobile site:
SELECT p.* FROM jtf.jtf_perz_profile p, jtf.jtf_msites_b m WHERE m.profile_id = p.profile_id AND m.site_code = 'SITE_XYZ'; - Analyzing profile composition:
SELECT p.profile_id, count(d.profile_id) attribute_count FROM jtf.jtf_perz_profile p, jtf.jtf_perz_profile_attrib d WHERE p.profile_id = d.profile_id GROUP BY p.profile_id;
Related Objects
The JTF_PERZ_PROFILE table has a central, parent relationship with several key tables that store the detailed components of a personalization profile, as documented by the foreign key constraints. The PROFILE_ID column is the join key for all these relationships.
- JTF_MSITES_B: Links personalization profiles to mobile sites (JTF_MSITES_B.PROFILE_ID).
- JTF_PERZ_DATA_DEFAULT: Stores default data values assigned to a profile.
- JTF_PERZ_DATA: Holds specific data values for a profile.
- JTF_PERZ_LF_VALUE: Contains lookup values associated with a profile.
- JTF_PERZ_PROFILE_ATTRIB: Defines the attributes or properties that constitute the profile.
- JTF_PERZ_QUERY: Stores query definitions used within a profile for dynamic data filtering.
-
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_CAL_UTILITY_PVT dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.JTF_TASK_SECURITY_PVT dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.CAC_SYNC_TASK_CATEGORY dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTF_DIAGNOSTIC_MIGRATE dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.CS_KB_PROFILES_PKG dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.CAC_SYNC_TASK_CATEGORY dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.CS_KB_PROFILES_PKG dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTF_CAL_UTILITY_PVT dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTF_PERZ_LF_PVT dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.JTF_TASK_UTL dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.AMS_ADV_FILTER_PVT dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTF_TASK_UTL dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTF_TASK_SECURITY_PVT dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTF_PERZ_LF_PVT dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.IBU_ADMIN dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTA_SYNC_TASK_CATEGORY dependencies on JTF_PERZ_PROFILE
12.2.2
-
APPS.JTF_DIAGNOSTIC_MIGRATE dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.JTA_SYNC_TASK_CATEGORY dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.IBU_ADMIN dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.AMS_ADV_FILTER_PVT dependencies on JTF_PERZ_PROFILE
12.1.1
-
APPS.JTF_DIAGNOSTIC_MIGRATE dependencies on JTF_PERZ_DATA
12.2.2
-
APPS.JTF_DIAGNOSTIC_MIGRATE dependencies on JTF_PERZ_DATA_ATTRIB
12.2.2
-
APPS.JTF_DIAGNOSTIC_MIGRATE dependencies on JTF_PERZ_DATA_ATTRIB
12.1.1
-
APPS.JTF_DIAGNOSTIC_MIGRATE dependencies on JTF_PERZ_DATA
12.1.1
-
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_CAL_UTILITY_PVT dependencies on JTF_PERZ_DATA
12.2.2
-
APPS.JTF_CAL_UTILITY_PVT dependencies on JTF_PERZ_DATA
12.1.1
-
APPS.JTF_PERZ_PROFILE_PVT SQL Statements
12.2.2
-
APPS.CS_KB_PROFILES_PKG dependencies on JTF_PERZ_DATA
12.2.2
-
VIEW: JTF.JTF_PERZ_PROFILE#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_PERZ_PROFILE#, status:VALID,
-
APPS.JTF_PERZ_PROFILE_PVT SQL Statements
12.1.1
-
APPS.CS_KB_PROFILES_PKG dependencies on JTF_PERZ_DATA
12.1.1
-
APPS.JTF_CAL_UTILITY_PVT dependencies on JTF_PERZ_DATA_ATTRIB
12.1.1
-
APPS.JTF_CAL_UTILITY_PVT dependencies on JTF_PERZ_DATA_ATTRIB
12.2.2
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE_S
12.1.1
-
APPS.JTF_PERZ_PROFILE_PVT dependencies on JTF_PERZ_PROFILE_S
12.2.2
-
APPS.JTF_DIAGNOSTIC_MIGRATE SQL Statements
12.1.1
-
VIEW: APPS.JTF_PERZ_DATA_V
12.1.1
-
VIEW: APPS.JTF_PERZ_QUERY_PARAM_V
12.1.1
-
VIEW: APPS.AST_LS_SAVED_QUERIES_V
12.1.1
-
APPS.JTF_DIAGNOSTIC_MIGRATE dependencies on FND_APPLICATION
12.2.2
-
APPS.JTF_DIAGNOSTIC_MIGRATE SQL Statements
12.2.2
-
TRIGGER: APPS.JTF_PERZ_PROFILE+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:JTF_PERZ_PROFILE+, status:VALID,
-
VIEW: JTF.JTF_PERZ_PROFILE#
12.2.2
-
VIEW: APPS.JTF_PERZ_QUERY_PARAM_V
12.2.2