Search Results ben_enrt_mthd
Overview
APPS.BENBV_LER_CHG_PGM_ENRT_V is a business view (BV) in the Oracle E-Business Suite Advanced Benefits (BEN) module. It presents the rows of the underlying change-program enrollment rules, exposing both the raw coded values and their decoded, user-facing meanings. The view is a read-only construct: its definition terminates with the WITH READ ONLY clause, so it is intended strictly for query, reporting, and integration consumption rather than for DML.
In the context of the "ben_enrt_mthd" search term, this view is directly relevant because it surfaces the enrollment method column ENRT_MTHD_CD together with its decoded counterpart produced by HR_BIS.BIS_DECODE_LOOKUP('BEN_ENRT_MTHD', LGE.ENRT_MTHD_CD). This allows a report or interface to obtain the enrollment method code and its descriptive meaning without performing a separate lookup against the BEN lookup tables.
Underlying Base Objects
The view is defined over two documented referenced objects:
- BEN_LER_CHG_PGM_ENRT_F (accessed through the synonym
LGE) — the base table holding change-program enrollment rule records. All columns exposed by the view originate from this table or are derived from its values. - HR_BIS (package) — the HR Business Intelligence/decoding package, invoked through
BIS_DECODE_LOOKUPandGET_SEC_PROFILE_BG_ID.
The WHERE predicate LGE.BUSINESS_GROUP_ID = NVL(HR_BIS.GET_SEC_PROFILE_BG_ID, LGE.BUSINESS_BG_ID) enforces business-group security: rows are filtered to the business group returned by the security profile, or, when no profile value is resolved, to the row's own business group. This is the standard multi-tenant data-segregation pattern used throughout BEN business views.
Key Columns
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — the datetracked validity range of the enrollment rule.
- ENRT_CD / DFLT_ENRT_CD — the enrollment and default enrollment codes, each accompanied by a decoded value via
BIS_DECODE_LOOKUP('BEN_ENRT', …)andBIS_DECODE_LOOKUP('BEN_DFLT_ENRT', …). - ENRT_MTHD_CD — the enrollment method code, the central attribute associated with the "ben_enrt_mthd" lookup type (
BEN_ENRT_MTHD). Its decoded meaning is returned as the adjacent column. This is the column of primary interest when searching for enrollment method configuration. - AUTO_ENRT_MTHD_RL / DFLT_ENRT_RL / ENRT_RL — the rules driving automatic enrollment method, default enrollment, and enrollment respectively.
- CRNT_ENRT_PRCLDS_CHG_FLAG — flag indicating whether the current enrollment precludes a change, decoded against the
YES_NOlookup. - STL_ELIG_CANT_CHG_FLAG — flag indicating that still-eligible persons cannot change their enrollment, also decoded via
YES_NO. - LER_CHG_PGM_ENRT_ID, PGM_ID, LER_ID, BUSINESS_GROUP_ID — identifier columns linking the row to its program (PGM_ID) and life-event/change rule (LER_ID).
- WHO columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, CREATION_DATE.
The view also exposes a descriptive flexfield reference, '_DF:BEN:BEN_LER_CHG_PGM_ENRT_F:LGE', signaling that DFF segments defined on the base table are surfaced through this view.
Common Use Cases and Queries
Typical uses include reporting on enrollment methods configured for change programs, validating rule setup, and data extracts to external systems. A representative query filtering on the decoded enrollment method follows:
- List enrollment method codes and their descriptions for a program:
SELECT PGM_ID, ENRT_MTHD_CD, BIS_DECODE_LOOKUP('BEN_ENRT_MTHD', ENRT_MTHD_CD) ENRT_MTHD_MEANING FROM APPS.BENBV_LER_CHG_PGM_ENRT_V WHERE PGM_ID = :pgm_id; - Identify rules that prevent mid-period changes:
SELECT LER_CHG_PGM_ENRT_ID, CRNT_ENRT_PRCLDS_CHG_FLAG FROM APPS.BENBV_LER_CHG_PGM_ENRT_V WHERE CRNT_ENRT_PRCLDS_CHG_FLAG = 'Y'; - Current effective rules by business group and program:
SELECT * FROM APPS.BENBV_LER_CHG_PGM_ENRT_V WHERE SYSDATE BETWEEN EFFECTIVE_START_DATE AND EFFECTIVE_END_DATE;
Because the view is read-only and applies business-group security automatically, it is the preferred access path for reporting over BEN_LER_CHG_PGM_ENRT_F within Oracle EBS 12.1.1 and 12.2.2, avoiding the need to join the underlying lookup tables directly.
-
Lookup Type: BEN_ENRT_MTHD
12.1.1
product: PER - Human Resources , meaning: BEN_ENRT_MTHD ,
-
Lookup Type: BEN_ENRT_MTHD
12.2.2
product: PER - Human Resources , meaning: BEN_ENRT_MTHD ,
-
VIEW: APPS.BENBV_LER_CHG_PGM_ENRT_V
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_PL_NIP_ENRT_V
12.1.1
-
VIEW: APPS.BENBV_LER_CHG_PTIP_ENRT_V
12.2.2
-
VIEW: APPS.BEN_LER_CHG_PTIP_ENRT_D
12.1.1
-
VIEW: APPS.BEN_LER_CHG_PTIP_ENRT_D
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_PLIP_ENRT_D
12.1.1
-
VIEW: APPS.BEN_LER_CHG_PGM_ENRT_D
12.1.1
-
VIEW: APPS.BEN_LER_CHG_PGM_ENRT_D
12.2.2
-
VIEW: APPS.BENBV_PLIP_V
12.1.1
-
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_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_PTIP_V
12.1.1
-
VIEW: APPS.BENBV_PTIP_V
12.2.2
-
VIEW: APPS.BENBV_PLIP_V
12.2.2
-
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_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: 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.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_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: 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_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: 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: 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: 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: 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: APPS.BENBV_PGM_V
12.2.2
-
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.BENBV_PGM_V
12.1.1
-
View: BEN_LER_CHG_PGM_ENRT_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_LER_CHG_PGM_ENRT_D, object_name:BEN_LER_CHG_PGM_ENRT_D, status:VALID, product: BEN - Advanced Benefits , description: Life Event - Program Enrollment Date Track View , implementation_dba_data: APPS.BEN_LER_CHG_PGM_ENRT_D ,
-
View: BEN_LER_CHG_PGM_ENRT_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_LER_CHG_PGM_ENRT_D, object_name:BEN_LER_CHG_PGM_ENRT_D, status:VALID, product: BEN - Advanced Benefits , description: Life Event - Program Enrollment Date Track View , implementation_dba_data: APPS.BEN_LER_CHG_PGM_ENRT_D ,
-
View: BENBV_PLIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PLIP_V, object_name:BENBV_PLIP_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies and specifies processing characteristics of a plan assigned to a program. , implementation_dba_data: APPS.BENBV_PLIP_V ,
-
VIEW: APPS.BEN_PLIP_D
12.1.1
-
View: BENBV_PLIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PLIP_V, object_name:BENBV_PLIP_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies and specifies processing characteristics of a plan assigned to a program. , implementation_dba_data: APPS.BENBV_PLIP_V ,
-
VIEW: APPS.BEN_PLIP_D
12.2.2
-
View: BENBV_PTIP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PTIP_V, object_name:BENBV_PTIP_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies processing requirements for a plan type that is supported within a program. , implementation_dba_data: APPS.BENBV_PTIP_V ,
-
View: BENBV_PTIP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PTIP_V, object_name:BENBV_PTIP_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies processing requirements for a plan type that is supported within a program. , implementation_dba_data: APPS.BENBV_PTIP_V ,