Search Results ben_eligy_crit_values
Overview
BEN_ELIGY_CRIT_VALUES is an APPS-owned database view within the BEN (Advanced Benefits) product of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It exposes eligibility criteria values configuration data used by the Oracle Advanced Benefits (OAB) eligibility engine to determine whether a participant or dependent qualifies for a given program, plan, or option. In EBS, eligibility is modeled through eligibility profiles (BEN_ELIG_PRFL_F) that group one or more eligibility criteria (BEN_ELIG_CRITERIA_F), and each criterion is further qualified by one or more criteria values — the records surfaced by this view. Each row therefore represents a single value (or value range) assigned to a criterion attached to an eligibility profile.
Functionally, the view is a session-effective (date-tracked) reporting layer. Rather than querying the underlying _F table directly, the view restricts results to records valid as of the current FND session effective date, so reports and integrations return configuration state as the E-Business Suite session "sees" it. This makes it suitable for point-in-time reporting, data extraction, and troubleshooting of eligibility rule configuration.
Underlying Base Objects
The documented ETRM metadata identifies the view as defined over two synonyms: BEN_ELIGY_CRIT_VALUES_F (the base date-tracked table) and FND_SESSIONS (used to derive the session effective date). The view logic is date-effective filtering: rows from BEN_ELIGY_CRIT_VALUES_F are returned only where EFFECTIVE_START_DATE <= session effective date and EFFECTIVE_END_DATE >= session effective date. The session effective date is obtained via USERENV('SESSIONID') joined to FND_SESSIONS. Because it is a view, no separate storage exists; all columns are projections of the underlying table, prefixed internally with the alias ECV.
Key Columns
ELIGY_CRIT_VALUES_ID— Primary identifier for the criteria value record.ELIGY_PRFL_ID— The eligibility profile to which the criterion/value belongs; joins to the eligibility profile table.ELIGY_CRITERIA_ID— The eligibility criterion the value qualifies; joins to the eligibility criteria table.EFFECTIVE_START_DATE/EFFECTIVE_END_DATE— Date-effective range controlling row visibility by session date.ORDR_NUM— Ordering sequence when multiple values apply to a criterion.NUMBER_VALUE1,NUMBER_VALUE2,CHAR_VALUE1,CHAR_VALUE2,DATE_VALUE1,DATE_VALUE2— Type-specific value pairs used to express thresholds, ranges, or matching values depending on the criterion type.EXCLD_FLAG— Indicates whether the value operates as an include or exclude condition.BUSINESS_GROUP_ID— Operating unit / business group context for the configuration row.LEGISLATION_CODE— Legislation (country) that scopes the value.ECV_ATTRIBUTE_CATEGORYandECV_ATTRIBUTE1…ECV_ATTRIBUTE30— Descriptive flexfield (DFF) columns for customer-defined attributes.- Audit columns —
LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN,CREATED_BY,CREATION_DATE,OBJECT_VERSION_NUMBER.
Common Use Cases and Queries
Typical scenarios include auditing eligibility configuration, verifying which value ranges an eligibility profile applies, and extracting criteria values for conversion or reconciliation against legacy systems. Because the view already enforces session-effective filtering, queries automatically return the current configuration without manual date predicates.
- Listing values for a specific eligibility profile:
SELECT ecv.eligy_crit_values_id, ecv.eligy_criteria_id, ecv.ordr_num, ecv.number_value1, ecv.char_value1 FROM apps.ben_eligy_crit_values ecv WHERE ecv.eligy_prfl_id = :p_profile_id ORDER BY ecv.eligy_criteria_id, ecv.ordr_num; - Identifying exclusion-type values:
WHERE ecv.excld_flag = 'Y'. - Reporting criteria values by business group and legislation for regional analysis.
- Joining to
BEN_ELIG_CRITERIA_FandBEN_ELIG_PRFL_Fto resolve criterion and profile names for reporting.
As with all date-effective BEN views, the returned dataset reflects the session effective date, so care should be taken in integrations that run outside a normal EBS session context. The view is read-only and should not be used for direct DML.
-
View: BEN_ELIGY_CRIT_VALUES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIGY_CRIT_VALUES, object_name:BEN_ELIGY_CRIT_VALUES, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ELIGY_CRIT_VALUES ,
-
View: BEN_ELIGY_CRIT_VALUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIGY_CRIT_VALUES, object_name:BEN_ELIGY_CRIT_VALUES, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ELIGY_CRIT_VALUES ,
-
SYNONYM: PUBLIC.BEN_ELIGY_CRIT_VALUES
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:BEN_ELIGY_CRIT_VALUES, status:VALID,
-
SYNONYM: APPS.BEN_ELIGY_CRIT_VALUES_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_ELIGY_CRIT_VALUES_F, status:VALID,
-
SYNONYM: APPS.BEN_ELIGY_CRIT_VALUES_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_ELIGY_CRIT_VALUES_F, status:VALID,
-
VIEW: APPS.BEN_ELIGY_CRIT_VALUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIGY_CRIT_VALUES, object_name:BEN_ELIGY_CRIT_VALUES, status:VALID,
-
VIEW: APPS.BEN_ELIGY_CRIT_VALUES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIGY_CRIT_VALUES, object_name:BEN_ELIGY_CRIT_VALUES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.FND_SESSIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_SESSIONS, status:VALID,
-
SYNONYM: APPS.FND_SESSIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_SESSIONS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - BEN Tables and Views
12.1.1
description: Start and End periods. ,
-
eTRM - BEN Tables and Views
12.2.2
description: Start and End periods. ,
-
eTRM - BEN Tables and Views
12.1.1
description: Start and End periods. ,
-
eTRM - BEN Tables and Views
12.2.2
description: Start and End periods. ,