Search Results fnd_profile_option_values
The FND_PROFILE_OPTION_VALUES
table is a critical repository within Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2, storing user, responsibility, site, and application-level profile option values. These profile options govern system behavior, security, and functional configurations across the Oracle EBS environment. Understanding this table's structure, relationships, and usage is essential for system administrators, developers, and functional consultants.
Table Structure and Key Columns
TheFND_PROFILE_OPTION_VALUES
table consists of the following key columns:
- PROFILE_OPTION_ID: Foreign key to
FND_PROFILE_OPTIONS
, identifying the profile option. - LEVEL_ID: Numeric value indicating the hierarchy level (Site=1, Application=2, Responsibility=3, User=4, Server=5, Org=6).
- LEVEL_VALUE: Contains the specific ID corresponding to the level (e.g., USER_ID for user-level profiles).
- LEVEL_VALUE_APPLICATION_ID: Application ID when level is Application or Responsibility.
- PROFILE_OPTION_VALUE: The actual configured value for the profile option.
- LAST_UPDATE_DATE, LAST_UPDATED_BY: Audit columns tracking modifications.
Hierarchy and Precedence Rules
Profile options follow a strict hierarchy where lower-level values override higher-level settings:- Site Level (1): Applies to all users unless overridden.
- Application Level (2): Specific to an application module.
- Responsibility Level (3): Applies to users with the assigned responsibility.
- User Level (4): Specific to individual users.
- Server Level (5): Node-specific configurations in clustered environments.
- Organization Level (6): For Multi-Org configurations.
Technical Implementation
The table integrates with Oracle EBS's profile option framework through:- PL/SQL API
FND_PROFILE
package (GET_VALUE
,PUT
,SAVE
functions) - Concurrent program "Synchronize Profile Values" (
FNDSYCP
) to sync cached values - Dependencies with
FND_PROFILE_OPTIONS
(definitions) andFND_PROFILE_OPTION_VALUES
tables
Common Use Cases
- System Configuration: Setting global parameters like
GL_SET_OF_BKS_ID
for financials. - Security Controls: Implementing function security via
FND:VALIDATION_FUNCTION
. - Personalization: User-specific preferences like date formats (
ICX_DATE_FORMAT
). - Performance Tuning: Adjusting memory parameters (
OLTP_PAGE_BUFFER_SIZE
).
Administration Best Practices
- Use Oracle's standard profile screens (System Administrator > Profile > System) for changes
- Document all custom profile option settings in a configuration repository
- Leverage
FNDLOAD
for migrating profile options between environments - Monitor performance impacts of profile options with hierarchical values
- Regularly audit profile values using SQL queries against
FND_PROFILE_OPTION_VALUES
Query Examples
-- Find all user-level profile values for a specific option SELECT fu.user_name, fpov.profile_option_value FROM fnd_profile_option_values fpov, fnd_user fu WHERE fpov.profile_option_id = (SELECT profile_option_id FROM fnd_profile_options WHERE profile_option_name = 'PROFILE_OPTION_NAME') AND fpov.level_id = 4 AND fpov.level_value = fu.user_id;The
FND_PROFILE_OPTION_VALUES
table serves as the operational backbone for Oracle EBS's flexible configuration system. Proper management of this table ensures system stability while enabling granular control over application behavior across diverse implementation scenarios.
-
Table: FND_PROFILE_OPTION_VALUES
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_PROFILE_OPTION_VALUES, object_name:FND_PROFILE_OPTION_VALUES, status:VALID, product: FND - Application Object Library , description: Values of user profile options defined at different profile levels , implementation_dba_data: APPLSYS.FND_PROFILE_OPTION_VALUES ,
-
Table: FND_PROFILE_OPTION_VALUES
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_PROFILE_OPTION_VALUES, object_name:FND_PROFILE_OPTION_VALUES, status:VALID, product: FND - Application Object Library , description: Values of user profile options defined at different profile levels , implementation_dba_data: APPLSYS.FND_PROFILE_OPTION_VALUES ,
-
APPS.JTF_DIAGNOSTIC_COREAPI dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.GL_AUTO_ALLOC_WF_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.IGC_UPGRADE_DATA_R12 dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.RCV_HXT_GRP dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.PJI_PJP_EXTRACTION_UTILS dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.OKL_CONTRACT_PVT dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.IGI_ITR_PREP_APPRV_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.IBU_REQ_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.MSC_GET_PROFILE dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.AS_SALES_METH_WF dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.WF_DIAGNOSTICS dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.BEN_CWB_DATA_MODEL_UPGRADE dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.BOMPLDCB dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.PSA_FUNDS_CHECKER_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.GL_PUBLIC_SECTOR dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.BOMPLDCI dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.IGS_PE_CONFIG_PVT dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.MRP_CL_REFRESH_SNAPSHOT dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.ARW_CMREQ_COVER dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.HZ_MIXNM_WEBUI_UTILITY dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.FND_DISCONNECTED dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.GR_PROCESS_DOCUMENTS dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.CSM_PROFILE_EVENT_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.HXC_SECURITY dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.AS_VALIDATE_SETUP dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.POS_REG_WF_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.FND_CORE_LOG dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.OKC_AQ_PVT dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.BEN_CWB_UTILS dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.XLA_MO_REPORTING_API dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.POS_PRODUCT_SERVICE_UTL_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.OZF_SD_REQUEST_PUB dependencies on FND_PROFILE_OPTION_VALUES
12.1.1
-
APPS.GL_FLEX_INSERT_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.PAY_HR_OTC_RETRIEVAL_INTERFACE dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.GMS_WF_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.CS_CF_UPG_UTL_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.FND_DISCONNECTED dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.AS_SCORECARD_RULES_PVT dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.POS_REG_WF_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.PAY_IE_P35_XML_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.MO_GLOBAL dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.PO_ATTRIBUTE_VALUES_PVT dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.CSM_HA_EVENT_PKG dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.JTF_DIAGNOSTIC_COREAPI dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.AR_GTA_CONC_PROG dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.PV_CONTEXT_VALUES dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.JTF_UM_UTIL_PVT dependencies on FND_PROFILE_OPTION_VALUES
12.2.2
-
APPS.GR_MIGRATE_TO_12 dependencies on FND_PROFILE_OPTION_VALUES
12.2.2