Search Results ben_dflt_enrt
Overview
APPS.BENBV_LER_CHG_PL_NIP_ENRT_V is a read-only Oracle EBS view in the Benefits (BEN) module that exposes default enrollment rule configuration at the Life Event Reason / Plan / Non-Investment Product level. The view presents a flattened and decoded representation of rows stored in the underlying flexfield table BEN_LER_CHG_PL_NIP_ENRT_F, joining a descriptive flexfield reference and applying lookup decoding so that code values appear alongside their human-readable meanings.
The view is defined with the WITH READ ONLY clause, confirming it is intended strictly for query and reporting purposes rather than for transactional data manipulation. The name includes the "BV" (Benefits View) convention used throughout Oracle EBS Benefits for seeded, business-oriented views that present base table data in a user-friendly form. In the context of the user's search term "ben_dflt_enrt", this view is significant because it surfaces the DFLT_ENRT_CD and DFLT_ENRT_RL columns together with their decoded lookup values, making it the natural object for investigating default enrollment behavior associated with a life event reason and plan combination.
Underlying Base Objects
The view is defined over the base synonym BEN_LER_CHG_PL_NIP_ENRT_F, which is the "F" (flexfield-enabled) table storing life event reason change plan / non-investment product enrollment rules. The suffix indicates the table carries descriptive flexfield segments that are referenced in this view via the literal string '_DF:BEN:BEN_LER_CHG_PL_NIP_ENRT_F:LPE', which signals to the EBS framework that descriptive flexfield attributes belong to the BEN_LER_CHG_PL_NIP_ENRT_F entity.
In addition to the base table, the view references the HR_BIS package, specifically the function HR_BIS.BIS_DECODE_LOOKUP, which is invoked repeatedly to resolve coded values into their corresponding lookup meanings. The view also draws on HR_BIS.GET_SEC_PROFILE_BG_ID in its WHERE clause, applying business group security by restricting returned rows to the session's security profile business group (with NVL logic that falls back to the row's own BUSINESS_GROUP_ID when no profile is resolved). This combination of a seeded base table plus HR_BIS utilities is typical of Benefits views that must honor both security profiles and lookup decoding.
Key Columns
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — Date-effective range governing when the enrollment rule applies.
- AUTO_ENRT_MTHD_RL, DFLT_ENRT_RL, ENRT_RL — Rule identifiers associated with automatic enrollment method, default enrollment, and enrollment logic.
- TCO_CHG_ENRT_CD — Code for the total compensation change enrollment behavior, shown with its decoded value via the BEN_TCO_CHG_ENRT lookup.
- ENRT_MTHD_CD — Enrollment method code, decoded against BEN_ENRT_MTHD.
- DFLT_ENRT_CD — Default enrollment code, decoded against the BEN_DFLT_ENRT lookup. This is the column most directly relevant to the "ben_dflt_enrt" search.
- ENRT_CD — Enrollment code decoded against BEN_ENRT.
- CRNT_ENRT_PRCLDS_CHG_FLAG, DFLT_FLAG, STL_ELIG_CANT_CHG_FLAG — Yes/No indicators, each decoded through the YES_NO lookup.
- LER_CHG_PL_NIP_ENRT_ID, BUSINESS_GROUP_ID, PL_ID, LER_ID — Identifier columns linking the rule to its life event reason, plan, and business group.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, CREATION_DATE — Standard WHO audit columns.
Common Use Cases and Queries
Typical usage centers on auditing default enrollment rules for a life event reason and plan. The following query returns default enrollment configuration for a given life event reason:
SELECT ler_id, pl_id, dflt_enrt_cd, dflt_flag, effective_start_date, effective_end_date FROM apps.benbv_ler_chg_pl_nip_enrt_v WHERE ler_id = :p_ler_id;SELECT pl_id, dflt_enrt_cd, auto_enrt_mthd_rl FROM apps.benbv_ler_chg_pl_nip_enrt_v WHERE dflt_flag = 'Y';- Reporting extracts that require both the stored code and the decoded meaning, since the view already returns lookup descriptions, avoiding the need to join FND_LOOKUP_VALUES manually.
Because the view is read-only and secured by business group, it is appropriate for concurrent-program extracts, BI Publisher data models, and OAF/ADF-based inquiries within Oracle EBS 12.1.1 and 12.2.2.
-
Lookup Type: BEN_DFLT_ENRT
12.1.1
product: PER - Human Resources , meaning: BEN_DFLT_ENRT ,
-
Lookup Type: BEN_DFLT_ENRT
12.2.2
product: PER - Human Resources , meaning: BEN_DFLT_ENRT ,
-
VIEW: APPS.BENBV_LER_CHG_PL_NIP_ENRT_V
12.1.1
-
VIEW: APPS.BENBV_LER_CHG_PGM_ENRT_V
12.1.1
-
VIEW: APPS.BEN_LER_CHG_PTIP_ENRT_D
12.1.1
-
VIEW: APPS.BENBV_LER_CHG_PTIP_ENRT_V
12.1.1
-
VIEW: APPS.BENBV_LER_CHG_PLIP_ENRT_V
12.1.1
-
VIEW: APPS.BEN_LER_CHG_PLIP_ENRT_D
12.2.2
-
VIEW: APPS.BENBV_LER_CHG_PGM_ENRT_V
12.2.2
-
VIEW: APPS.BENBV_LER_CHG_OIPL_ENRT_V
12.1.1
-
VIEW: APPS.BENBV_LER_CHG_OIPL_ENRT_V
12.2.2
-
VIEW: APPS.BENBV_LER_CHG_PTIP_ENRT_V
12.2.2
-
VIEW: APPS.BENBV_LER_CHG_PL_NIP_ENRT_V
12.2.2
-
VIEW: APPS.BENBV_LER_CHG_PLIP_ENRT_V
12.2.2
-
VIEW: APPS.BEN_LER_CHG_PTIP_ENRT_D
12.2.2
-
VIEW: APPS.BEN_LER_CHG_PLIP_ENRT_D
12.1.1
-
VIEW: APPS.BEN_LER_CHG_PGM_ENRT_D
12.1.1
-
VIEW: APPS.BENBV_OIPL_V
12.1.1
-
VIEW: APPS.BENBV_OIPL_V
12.2.2
-
VIEW: APPS.BEN_LER_CHG_PGM_ENRT_D
12.2.2
-
VIEW: APPS.BENBV_PLIP_V
12.1.1
-
VIEW: APPS.BENBV_PTIP_V
12.1.1
-
VIEW: APPS.BENBV_PTIP_V
12.2.2
-
View: BEN_LER_CHG_PLIP_ENRT_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_LER_CHG_PLIP_ENRT_D, object_name:BEN_LER_CHG_PLIP_ENRT_D, status:VALID, product: BEN - Advanced Benefits , description: Life Event Plan in Program Enrollment Date Track View , implementation_dba_data: APPS.BEN_LER_CHG_PLIP_ENRT_D ,
-
View: BENBV_LER_CHG_PGM_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PGM_ENRT_V, object_name:BENBV_LER_CHG_PGM_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on the election changes a person may or may not make to a program , implementation_dba_data: APPS.BENBV_LER_CHG_PGM_ENRT_V ,
-
VIEW: APPS.BENBV_LER_CHG_PLIP_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PLIP_ENRT_V, object_name:BENBV_LER_CHG_PLIP_ENRT_V, status:VALID,
-
VIEW: APPS.BENBV_PLIP_V
12.2.2
-
View: BENBV_LER_CHG_PL_NIP_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PL_NIP_ENRT_V, object_name:BENBV_LER_CHG_PL_NIP_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view specifies the life events that allow an eligible person to add, change or end enrollment in a plan that is not part of a program. , implementation_dba_data: APPS.BENBV_LER_CHG_PL_NIP_ENRT_V ,
-
View: BENBV_LER_CHG_PL_NIP_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PL_NIP_ENRT_V, object_name:BENBV_LER_CHG_PL_NIP_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view specifies the life events that allow an eligible person to add, change or end enrollment in a plan that is not part of a program. , implementation_dba_data: APPS.BENBV_LER_CHG_PL_NIP_ENRT_V ,
-
VIEW: APPS.BENBV_LER_CHG_OIPL_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_OIPL_ENRT_V, object_name:BENBV_LER_CHG_OIPL_ENRT_V, status:VALID,
-
VIEW: APPS.BENBV_LER_CHG_PTIP_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PTIP_ENRT_V, object_name:BENBV_LER_CHG_PTIP_ENRT_V, status:VALID,
-
VIEW: APPS.BENBV_LER_CHG_OIPL_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_OIPL_ENRT_V, object_name:BENBV_LER_CHG_OIPL_ENRT_V, status:VALID,
-
VIEW: APPS.BENBV_LER_CHG_PL_NIP_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PL_NIP_ENRT_V, object_name:BENBV_LER_CHG_PL_NIP_ENRT_V, status:VALID,
-
View: BEN_LER_CHG_PTIP_ENRT_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_LER_CHG_PTIP_ENRT_D, object_name:BEN_LER_CHG_PTIP_ENRT_D, status:VALID, product: BEN - Advanced Benefits , description: Life Event Plan Type in Program Enrollment Date Track View , implementation_dba_data: APPS.BEN_LER_CHG_PTIP_ENRT_D ,
-
VIEW: APPS.BENBV_LER_CHG_PGM_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PGM_ENRT_V, object_name:BENBV_LER_CHG_PGM_ENRT_V, status:VALID,
-
View: BEN_LER_CHG_PTIP_ENRT_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_LER_CHG_PTIP_ENRT_D, object_name:BEN_LER_CHG_PTIP_ENRT_D, status:VALID, product: BEN - Advanced Benefits , description: Life Event Plan Type in Program Enrollment Date Track View , implementation_dba_data: APPS.BEN_LER_CHG_PTIP_ENRT_D ,
-
View: BEN_LER_CHG_PLIP_ENRT_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_LER_CHG_PLIP_ENRT_D, object_name:BEN_LER_CHG_PLIP_ENRT_D, status:VALID, product: BEN - Advanced Benefits , description: Life Event Plan in Program Enrollment Date Track View , implementation_dba_data: APPS.BEN_LER_CHG_PLIP_ENRT_D ,
-
VIEW: APPS.BENBV_LER_CHG_PGM_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PGM_ENRT_V, object_name:BENBV_LER_CHG_PGM_ENRT_V, status:VALID,
-
VIEW: APPS.BENBV_LER_CHG_PL_NIP_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PL_NIP_ENRT_V, object_name:BENBV_LER_CHG_PL_NIP_ENRT_V, status:VALID,
-
VIEW: APPS.BENBV_LER_CHG_PLIP_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PLIP_ENRT_V, object_name:BENBV_LER_CHG_PLIP_ENRT_V, status:VALID,
-
View: BENBV_LER_CHG_OIPL_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_OIPL_ENRT_V, object_name:BENBV_LER_CHG_OIPL_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on the election changes a person may or may not make for an option in a plan. , implementation_dba_data: APPS.BENBV_LER_CHG_OIPL_ENRT_V ,
-
View: BENBV_LER_CHG_PTIP_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PTIP_ENRT_V, object_name:BENBV_LER_CHG_PTIP_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on the election changes a person may or may not make to a plan type in program. , implementation_dba_data: APPS.BENBV_LER_CHG_PTIP_ENRT_V ,
-
View: BENBV_LER_CHG_PGM_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PGM_ENRT_V, object_name:BENBV_LER_CHG_PGM_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on the election changes a person may or may not make to a program , implementation_dba_data: APPS.BENBV_LER_CHG_PGM_ENRT_V ,
-
View: BENBV_LER_CHG_OIPL_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_OIPL_ENRT_V, object_name:BENBV_LER_CHG_OIPL_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on the election changes a person may or may not make for an option in a plan. , implementation_dba_data: APPS.BENBV_LER_CHG_OIPL_ENRT_V ,
-
View: BENBV_LER_CHG_PLIP_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PLIP_ENRT_V, object_name:BENBV_LER_CHG_PLIP_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on the election changes a person may or may not make to a plan in program , implementation_dba_data: APPS.BENBV_LER_CHG_PLIP_ENRT_V ,
-
VIEW: APPS.BENBV_LER_CHG_PTIP_ENRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PTIP_ENRT_V, object_name:BENBV_LER_CHG_PTIP_ENRT_V, status:VALID,
-
View: BENBV_LER_CHG_PTIP_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PTIP_ENRT_V, object_name:BENBV_LER_CHG_PTIP_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on the election changes a person may or may not make to a plan type in program. , implementation_dba_data: APPS.BENBV_LER_CHG_PTIP_ENRT_V ,
-
View: BENBV_LER_CHG_PLIP_ENRT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_LER_CHG_PLIP_ENRT_V, object_name:BENBV_LER_CHG_PLIP_ENRT_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on the election changes a person may or may not make to a plan in program , implementation_dba_data: APPS.BENBV_LER_CHG_PLIP_ENRT_V ,
-
VIEW: APPS.BEN_OIPL_D
12.1.1
-
VIEW: APPS.BEN_OIPL_D
12.2.2