Search Results ben_elig_stdnt_stat_cvg_d
Overview
The BEN_ELIG_STDNT_STAT_CVG_D view is a denormalized reporting and integration object owned by the APPS schema within the Oracle Advanced Benefits (BEN) module. It presents eligibility rules that determine dependent coverage based on a dependent's student status. In Oracle EBS 12.1.1 and 12.2.2, this view serves as a read-only representation of the underlying eligibility setup, exposing lookup meanings and formula names rather than raw codes and identifiers. This design allows reporting tools, concurrent programs, and external integrations to consume human-readable eligibility configuration without joining multiple lookup and formula tables. The view is marked with the "Retrofitted" status in the ETRM documentation, indicating it was altered to conform to current schema standards. The suffix _D distinguishes this descriptive view from the base transactional table BEN_ELIG_STDNT_STAT_CVG_F. Because it joins to effective-dated formula records on EFFECTIVE_START_DATE boundaries, the view returns the formula version active at the time of the eligibility rule, preserving historical accuracy when the row's effective dates fall within a formula's validity range. This behavior is important for auditing and for reproducing prior eligibility determinations.
Underlying Base Objects
The view is defined over several documented base objects. The primary driver is BEN_ELIG_STDNT_STAT_CVG_F, the table storing student-status coverage eligibility records. It is outer-joined to BEN_DPNT_CVG_ELIGY_PRFL_F, which supplies the dependent coverage eligibility profile name. Lookup meanings are resolved through the HR_LOOKUPS view for three lookup types: BEN_DPNT_CVG_STRT (coverage start), BEN_DPNT_CVG_END (coverage through/end), and STUDENT_STATUS. Formula names are retrieved from FF_FORMULAS_F via the coverage-start rule (CVG_STRT_RL) and coverage-through rule (CVG_THRU_RL). The user who last updated each row is resolved from FND_USER. ETRM also lists the HR_API package as a referenced object, reflecting the API-driven maintenance path for the base records. Because every join to the descriptive tables uses the Oracle outer-join operator (+), the view never drops eligibility rows when a lookup meaning, formula, or user record is missing or unapproved.
Key Columns
- ELIG_STDNT_STAT_CVG_ID — Primary identifier linking the view back to the base eligibility record.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — Date-effective boundaries of the eligibility rule and the basis for formula version selection.
- DPNT_CVG_ELIGY_PRFL_NAME — Name of the dependent coverage eligibility profile the rule belongs to.
- CVG_STRT_MEANING / CVG_THRU_MEANING — Decoded coverage start and end meanings from HR lookups.
- CVG_STRT_NAME / CVG_THRU_NAME — Formula names governing coverage start and coverage through dates.
- STDNT_STAT_MEANING — The decoded student status (lookup type
STUDENT_STATUS) that qualifies the dependent for coverage. - LAST_UPDATE_DATE / LAST_UPDATED_BY — Audit columns identifying when and by whom the record was last changed.
Common Use Cases and Queries
The view is typically used to report or validate student-status-dependent coverage eligibility, to reconcile eligibility profiles against lookup configuration, and to troubleshoot why a dependent was accepted or rejected. A representative query filters by the decoded student status:
SELECT elig_stdnt_stat_cvg_id,
dpnt_cvg_eligy_prfl_name,
stdnt_stat_meaning,
cvg_strt_meaning,
cvg_thru_meaning
FROM apps.ben_elig_stdnt_stat_cvg_d
WHERE stdnt_stat_meaning = :p_student_status
AND SYSDATE BETWEEN effective_start_date AND effective_end_date;
Because the view exposes only the descriptive layer, it should not be used for transactional writes; modifications must be performed through the HR_API maintenance path against the base table.
-
View: BEN_ELIG_STDNT_STAT_CVG_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_STDNT_STAT_CVG_D, object_name:BEN_ELIG_STDNT_STAT_CVG_D, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_STDNT_STAT_CVG_D ,
-
View: BEN_ELIG_STDNT_STAT_CVG_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_STDNT_STAT_CVG_D, object_name:BEN_ELIG_STDNT_STAT_CVG_D, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_STDNT_STAT_CVG_D ,
-
SYNONYM: PUBLIC.BEN_ELIG_STDNT_STAT_CVG_D
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:BEN_ELIG_STDNT_STAT_CVG_D, status:VALID,
-
VIEW: APPS.BEN_ELIG_STDNT_STAT_CVG_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_STDNT_STAT_CVG_D, object_name:BEN_ELIG_STDNT_STAT_CVG_D, status:VALID,
-
SYNONYM: APPS.BEN_ELIG_STDNT_STAT_CVG_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_ELIG_STDNT_STAT_CVG_F, status:VALID,
-
SYNONYM: APPS.BEN_DPNT_CVG_ELIGY_PRFL_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_DPNT_CVG_ELIGY_PRFL_F, status:VALID,
-
SYNONYM: APPS.BEN_ELIG_STDNT_STAT_CVG_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_ELIG_STDNT_STAT_CVG_F, status:VALID,
-
SYNONYM: APPS.BEN_DPNT_CVG_ELIGY_PRFL_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_DPNT_CVG_ELIGY_PRFL_F, status:VALID,
-
VIEW: APPS.BEN_ELIG_STDNT_STAT_CVG_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_STDNT_STAT_CVG_D, object_name:BEN_ELIG_STDNT_STAT_CVG_D, status:VALID,
-
SYNONYM: APPS.FF_FORMULAS_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FF_FORMULAS_F, status:VALID,
-
SYNONYM: APPS.FF_FORMULAS_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FF_FORMULAS_F, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.HR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOOKUPS, object_name:HR_LOOKUPS, status:VALID,
-
VIEW: APPS.HR_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOOKUPS, object_name:HR_LOOKUPS, status:VALID,
-
SYNONYM: APPS.FND_USER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
SYNONYM: APPS.FND_USER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_USER, 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. ,
-
PACKAGE: APPS.HR_API
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_API, status:VALID,
-
PACKAGE: APPS.HR_API
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_API, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - BEN Tables and Views
12.2.2
description: Start and End periods. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - BEN Tables and Views
12.1.1
description: Start and End periods. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - BEN Tables and Views
12.2.2
description: Start and End periods. ,