Search Results no_mx_elcn_val_dfnd_flag
Overview
BEN_VRBL_RT_PRFL_F is the Variable Rate Profile table within the Oracle Advanced Benefits (BEN) product, a core component of Oracle E-Business Suite Human Resources and Benefits administration. The table stores the definition of variable rate profiles, which determine how benefit rates are calculated when they are not fixed values — for example, rates derived from compensation, age, length of service, hours worked, or other employee attributes. Each profile acts as a reusable calculation template that compensation objects and plan configurations reference when a benefit offering requires a formula-driven rate rather than a flat amount.
The table is date-effectivity enabled, carrying the standard EFFECTIVE_START_DATE and EFFECTIVE_END_DATE pair alongside its surrogate identifier VRBL_RT_PRFL_ID. This conforms to the Oracle EBS date-tracked entity pattern, where each logical profile may have multiple effective-dated versions. From a Data Vault modeling perspective, the metadata suggests a satellite-leaning classification: the table captures descriptive and calculation attributes attached to a rate profile business key, with the primary key acting as a versioned unique identifier rather than a pure hub. The physical schema is substantial, encompassing 136 documented columns in the 12.2.2 ETRM release.
Key Information Stored
The surrogate primary key is VRBL_RT_PRFL_ID, which, combined with the effective dates, forms the unique index BEN_VRBL_RT_PRFL_F_PK. The columns most significant for functional and reporting purposes include:
- VRBL_RT_PRFL_ID — surrogate identifier for the variable rate profile.
- NAME — the user-defined name of the profile.
- BUSINESS_GROUP_ID — the HR security business group owning the record.
- VRBL_RT_TRTMT_CD and VRBL_RT_PRFL_STAT_CD — the treatment and status codes governing how the profile behaves and whether it is active.
- RT_TYP_CD, BNFT_RT_TYP_CD, and ASMT_TO_USE_CD — the rate type and the assessment method used to derive values.
- INCRMNT_ELCN_VAL, DFLT_ELCN_VAL, MN_ELCN_VAL, MX_ELCN_VAL — increment, default, minimum, and maximum election values.
- LWR_LMT_VAL and UPR_LMT_VAL, with their calculation rules (LWR_LMT_CALC_RL, UPR_LMT_CALC_RL), plus ULTMT_UPR_LMT and ULTMT_LWR_LMT for ultimate caps and floors.
- COMP_LVL_FCTR_ID — foreign key to BEN_COMP_LVL_FCTR, tying the profile to a compensation level factor.
- RNDG_CD and RNDG_RL — rounding code and rule applied to calculated rates.
A broad set of RT_*_FLAG columns (over forty of them, such as RT_AGE_FLAG, RT_LOS_FLAG, and RT_HRS_WKD_FLAG) indicate which employee attributes the profile may draw upon, while the VPF_ATTRIBUTE1 through VPF_ATTRIBUTE30 columns provide the standard EBS descriptive flexfield extension block. Standard audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, OBJECT_VERSION_NUMBER) are also present.
Common Use Cases and Queries
Functional consultants and developers query this table when troubleshooting why a calculated benefit rate produced an unexpected amount, when auditing which attributes a profile is permitted to consume, or when migrating rate profiles between environments. A typical lookup retrieves the active version of a profile by name and business group:
SELECT vrbl_rt_prfl_id, name, vrbl_rt_trtmt_cd, rt_typ_cd,
dflt_elcn_val, mn_elcn_val, mx_elcn_val, rndg_cd
FROM ben.ben_vrbl_rt_prfl_f
WHERE business_group_id = :p_bg_id
AND TRUNC(SYSDATE) BETWEEN effective_start_date AND effective_end_date;
Reporting use cases include generating a catalog of rate profiles for a plan year, verifying that caps and floors are consistent across profiles, and identifying profiles that reference compensation level factors via joins on COMP_LVL_FCTR_ID. Because of the wide flag set, analysts frequently build pivot queries that translate the RT_*_FLAG columns into a readable list of permitted rating attributes for documentation and audit deliverables.
Related Objects
The most directly related object is BEN_COMP_LVL_FCTR, joined through BEN_VRBL_RT_PRFL_F.COMP_LVL_FCTR_ID, which defines compensation level factors used in rate derivation. Plan and option configuration tables reference this profile through columns such as PL_ID, PL_TYP_OPT_TYP_ID, and OIPL_ID, linking the profile to plans and offerings. Rate calculation and eligibility engines in the BEN schema consume the profile identifiers to resolve election values at runtime, and the standard descriptive flexfield views layered over VPF_ATTRIBUTE1–30 support user-defined extensions. Date-tracked join patterns against these dependent tables must always respect the effective date range carried on BEN_VRBL_RT_PRFL_F.
-
Table: BEN_VRBL_RT_PRFL_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_F, object_name:BEN_VRBL_RT_PRFL_F, status:VALID, product: BEN - Advanced Benefits , description: Variable rate profile. , implementation_dba_data: BEN.BEN_VRBL_RT_PRFL_F ,
-
Table: BEN_VRBL_RT_PRFL_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_F, object_name:BEN_VRBL_RT_PRFL_F, status:VALID, product: BEN - Advanced Benefits , description: Variable rate profile. , implementation_dba_data: BEN.BEN_VRBL_RT_PRFL_F ,
-
Table: BEN_ACTY_BASE_RT_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ACTY_BASE_RT_F, object_name:BEN_ACTY_BASE_RT_F, status:VALID, product: BEN - Advanced Benefits , description: Values to use for activities in plans or options. , implementation_dba_data: BEN.BEN_ACTY_BASE_RT_F ,
-
Table: BEN_ACTY_BASE_RT_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ACTY_BASE_RT_F, object_name:BEN_ACTY_BASE_RT_F, status:VALID, product: BEN - Advanced Benefits , description: Values to use for activities in plans or options. , implementation_dba_data: BEN.BEN_ACTY_BASE_RT_F ,
-
VIEW: BEN.BEN_ACTY_BASE_RT_F#
12.2.2
-
VIEW: BEN.BEN_VRBL_RT_PRFL_F#
12.2.2
-
APPS.BEN_VPF_SHD SQL Statements
12.2.2
-
APPS.BEN_ABR_SHD SQL Statements
12.1.1
-
APPS.BEN_VPF_SHD SQL Statements
12.1.1
-
APPS.BEN_ABR_SHD SQL Statements
12.2.2
-
VIEW: BEN.BEN_ACTY_BASE_RT_F#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_ACTY_BASE_RT_F#, status:VALID,
-
VIEW: APPS.BENBV_ACTY_BASE_RT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ACTY_BASE_RT_V, object_name:BENBV_ACTY_BASE_RT_V, status:VALID,
-
VIEW: APPS.BENBV_ACTY_BASE_RT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ACTY_BASE_RT_V, object_name:BENBV_ACTY_BASE_RT_V, status:VALID,
-
VIEW: APPS.BEN_ACTY_BASE_RT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT, object_name:BEN_ACTY_BASE_RT, status:VALID,
-
View: BEN_ACTY_BASE_RT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT_V, object_name:BEN_ACTY_BASE_RT_V, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ACTY_BASE_RT_V ,
-
VIEW: BEN.BEN_VRBL_RT_PRFL_F#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_VRBL_RT_PRFL_F#, status:VALID,
-
View: BEN_ACTY_BASE_RT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT_V, object_name:BEN_ACTY_BASE_RT_V, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ACTY_BASE_RT_V ,
-
View: BEN_VRBL_RT_PRFL_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_X, object_name:BEN_VRBL_RT_PRFL_X, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_VRBL_RT_PRFL_X ,
-
View: BEN_VRBL_RT_PRFL_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_X, object_name:BEN_VRBL_RT_PRFL_X, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_VRBL_RT_PRFL_X ,
-
VIEW: APPS.BEN_VRBL_RT_PRFL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL, object_name:BEN_VRBL_RT_PRFL, status:VALID,
-
View: BEN_VRBL_RT_PRFL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_V, object_name:BEN_VRBL_RT_PRFL_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_VRBL_RT_PRFL_V ,
-
VIEW: APPS.BEN_VRBL_RT_PRFL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_V, object_name:BEN_VRBL_RT_PRFL_V, status:VALID,
-
VIEW: APPS.BEN_ACTY_BASE_RT_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT_X, object_name:BEN_ACTY_BASE_RT_X, status:VALID,
-
VIEW: APPS.BEN_ACTY_BASE_RT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT_V, object_name:BEN_ACTY_BASE_RT_V, status:VALID,
-
View: BEN_ACTY_BASE_RT_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT_X, object_name:BEN_ACTY_BASE_RT_X, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ACTY_BASE_RT_X ,
-
View: BEN_ACTY_BASE_RT_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT_X, object_name:BEN_ACTY_BASE_RT_X, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ACTY_BASE_RT_X ,
-
View: BEN_VRBL_RT_PRFL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL, object_name:BEN_VRBL_RT_PRFL, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_VRBL_RT_PRFL ,
-
View: BEN_VRBL_RT_PRFL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_V, object_name:BEN_VRBL_RT_PRFL_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_VRBL_RT_PRFL_V ,
-
VIEW: APPS.BEN_ACTY_BASE_RT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT, object_name:BEN_ACTY_BASE_RT, status:VALID,
-
VIEW: APPS.BEN_VRBL_RT_PRFL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL, object_name:BEN_VRBL_RT_PRFL, status:VALID,
-
VIEW: APPS.BEN_VRBL_RT_PRFL_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_X, object_name:BEN_VRBL_RT_PRFL_X, status:VALID,
-
VIEW: APPS.BEN_VRBL_RT_PRFL_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_X, object_name:BEN_VRBL_RT_PRFL_X, status:VALID,
-
View: BEN_ACTY_BASE_RT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT, object_name:BEN_ACTY_BASE_RT, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ACTY_BASE_RT ,
-
VIEW: APPS.BEN_ACTY_BASE_RT_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT_X, object_name:BEN_ACTY_BASE_RT_X, status:VALID,
-
VIEW: APPS.BEN_VRBL_RT_PRFL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_V, object_name:BEN_VRBL_RT_PRFL_V, status:VALID,
-
View: BEN_VRBL_RT_PRFL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_VRBL_RT_PRFL, object_name:BEN_VRBL_RT_PRFL, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_VRBL_RT_PRFL ,
-
View: BEN_ACTY_BASE_RT
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT, object_name:BEN_ACTY_BASE_RT, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ACTY_BASE_RT ,
-
VIEW: APPS.BEN_ACTY_BASE_RT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACTY_BASE_RT_V, object_name:BEN_ACTY_BASE_RT_V, status:VALID,
-
View: BENBV_ACTY_BASE_RT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ACTY_BASE_RT_V, object_name:BENBV_ACTY_BASE_RT_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BENBV_ACTY_BASE_RT_V ,
-
View: BENBV_ACTY_BASE_RT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ACTY_BASE_RT_V, object_name:BENBV_ACTY_BASE_RT_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BENBV_ACTY_BASE_RT_V ,
-
View: BENBV_VRBL_RT_PRFL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_VRBL_RT_PRFL_V, object_name:BENBV_VRBL_RT_PRFL_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the values for a rate based on that fact that a person satisfies the criteria that have been defined for the profile. , implementation_dba_data: APPS.BENBV_VRBL_RT_PRFL_V ,
-
View: BENBV_VRBL_RT_PRFL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_VRBL_RT_PRFL_V, object_name:BENBV_VRBL_RT_PRFL_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the values for a rate based on that fact that a person satisfies the criteria that have been defined for the profile. , implementation_dba_data: APPS.BENBV_VRBL_RT_PRFL_V ,
-
APPS.BEN_ABR_INS SQL Statements
12.1.1
-
APPS.BEN_ABR_INS SQL Statements
12.2.2
-
TABLE: BEN.BEN_ACTY_BASE_RT_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ACTY_BASE_RT_F, object_name:BEN_ACTY_BASE_RT_F, status:VALID,
-
TABLE: BEN.BEN_VRBL_RT_PRFL_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_F, object_name:BEN_VRBL_RT_PRFL_F, status:VALID,
-
TABLE: BEN.BEN_ACTY_BASE_RT_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ACTY_BASE_RT_F, object_name:BEN_ACTY_BASE_RT_F, status:VALID,
-
TABLE: BEN.BEN_VRBL_RT_PRFL_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_VRBL_RT_PRFL_F, object_name:BEN_VRBL_RT_PRFL_F, status:VALID,
-
APPS.BEN_VPF_INS SQL Statements
12.1.1
-
APPS.BEN_VPF_INS SQL Statements
12.2.2