Search Results fnd_flex_value_sets
Overview
The FND_FLEX_VALUE_SETS table is a core repository within the Application Object Library (FND) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It serves as the master definition table for all value sets, which are foundational components for both Key Flexfields (KFFs) and Descriptive Flexfields (DFFs). A value set defines the list of valid values, validation rules, and formatting for a segment within a flexfield. Every segment in a flexfield must be associated with a value set, making this table critical for ensuring data integrity and consistency across the application's customizable data structures. The table is owned by the APPLSYS schema and is central to the flexfield architecture.
Key Information Stored
The table stores metadata that governs the behavior and validation of flexfield segment values. Its primary key is FLEX_VALUE_SET_ID, a unique numeric identifier. The FLEX_VALUE_SET_NAME column provides a unique, user-defined name for the value set, which is enforced by a separate unique key constraint. Other significant columns define the value set's characteristics: VALIDATION_TYPE (e.g., Independent, Dependent, Table, None), FORMAT_TYPE (e.g., Char, Date, Number), MAXIMUM_SIZE, and PROTECTED_FLAG. The table also supports hierarchical relationships between value sets through the PARENT_FLEX_VALUE_SET_ID column, which is a self-referencing foreign key to the same table. This structure allows for the creation of dependent value sets where the list of valid values in one set is contingent upon the value selected in another.
Common Use Cases and Queries
This table is frequently queried for flexfield configuration analysis, troubleshooting, and reporting. Common scenarios include identifying all value sets used in the system, diagnosing invalid segment value errors, and understanding dependencies between flexfield segments. A fundamental query retrieves basic value set definitions:
- SELECT flex_value_set_name, validation_type, format_type, maximum_size FROM fnd_flex_value_sets WHERE flex_value_set_name LIKE '<Pattern>';
To find which descriptive flexfield contexts use a specific value set, one would join with FND_DESCR_FLEX_COLUMN_USAGES. Another critical use case is querying the hierarchical parent-child relationships between value sets to map dependent validations:
- SELECT child.flex_value_set_name AS child_set, parent.flex_value_set_name AS parent_set FROM fnd_flex_value_sets child LEFT JOIN fnd_flex_value_sets parent ON child.parent_flex_value_set_id = parent.flex_value_set_id;
Related Objects
As indicated by its extensive foreign key relationships, FND_FLEX_VALUE_SETS is the central hub for numerous flexfield-related entities. Key dependent tables include FND_FLEX_VALUES and FND_FLEX_VALUE_HIERARCHIES, which store the actual valid values and their hierarchical structures. It is referenced by flexfield definition tables such as FND_ID_FLEX_SEGMENTS (for key flexfield segments) and FND_DESCR_FLEX_COLUMN_USAGES (for descriptive flexfield segments). The table also links to advanced validation objects like FND_FLEX_VALIDATION_TABLES, FND_FLEX_VALUE_RULES, and FND_FLEX_HIERARCHIES. This network of relationships underscores its essential role in the EBS flexfield framework.
-
Table: FND_FLEX_VALUE_SETS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_FLEX_VALUE_SETS, object_name:FND_FLEX_VALUE_SETS, status:VALID, product: FND - Application Object Library , description: Value sets used by both key and descriptive flexfields , implementation_dba_data: APPLSYS.FND_FLEX_VALUE_SETS ,
-
Table: FND_FLEX_VALUE_SETS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_FLEX_VALUE_SETS, object_name:FND_FLEX_VALUE_SETS, status:VALID, product: FND - Application Object Library , description: Value sets used by both key and descriptive flexfields , implementation_dba_data: APPLSYS.FND_FLEX_VALUE_SETS ,
-
APPS.ARP_FLEX dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.ECE_RULES_PKG dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.LNS_BILLING_BATCH_PUB dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.BOMPLDCI dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.PER_RI_CONFIG_UTILITIES dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.CSF_TRIPS_PUB dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.GL_FLATTEN_SETUP_DATA dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.PSA_REP_ATTRIBUTES dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.OTA_TRAINING_PLAN_UPGRADE dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.OTA_CLASSIC_UPGRADE dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.HR_GL_SYNC_ORGS dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.FII_LOB_MAINTAIN_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.AP_WEB_DB_AP_INT_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.FII_GL_EXTRACTION_UTIL dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.OKL_RULE_APIS_PVT dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.PER_ASSIGNMENTS_F1_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.FV_FACTS_TRANSACTIONS dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.PQH_RBC_STAGE dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.CN_SCA_CRRULEATTR_PVT dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.JA_CN_GL_INTER_VALID_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.FEM_INTG_BAL_ENG_LOAD_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.GL_CHART_OF_ACCOUNTS_API_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.ECE_RULES_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.HXT_INTERFACE_UTILITIES dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.GL_PARENT_SEGMENT_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.OM_SETUP_VALID_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.GL_GLXRLSEG_XMLP_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.GL_REP_ATTRIBUTES dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.OKC_XPRT_QA_PVT dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.GL_SUMMARY_ACCOUNT_TYPES_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.FII_BUDGET_BASE_UPG_C dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.FA_RX_PUBLISH dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.ZX_FC_MIGRATE_PKG dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.PQH_GENERIC_HIERARCHY_PACKAGE dependencies on FND_FLEX_VALUE_SETS
12.1.1
-
APPS.IBC_CTYPE_PVT dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.FV_FACTS_TBAL_TRX dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.OKC_XPRT_UTIL_PVT dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.JA_CN_UTILITY dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.BEN_PLAN_DESIGN_ELPRO_MODULE dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.EGO_TRANSACTION_ATTRS_PVT dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.QP_VALIDATE_PLL_PRICING_ATTR dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.ITG_SYNCCOAINBOUND_PVT dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.JA_CN_COA_EXPORT_PKG dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.OKC_XPRT_IMPORT_TEMPLATE_PVT dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.GL_AFF_AWC_API_PKG dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.WMS_RULE_PVT dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.FND_DESCRIPTIVE_FLEXS_PKG dependencies on FND_FLEX_VALUE_SETS
12.2.2
-
APPS.EGO_USER_ATTRS_DATA_PVT dependencies on FND_FLEX_VALUE_SETS
12.2.2