Search Results prtn_eff_strt_dt_cd
Overview
BEN_PRTN_ELIG_F is a transactional table in the BEN (Advanced Benefits) product of Oracle E-Business Suite, documented as valid across ETRM 12.1.1 and 12.2.2. Its stated purpose is to store the eligibility criteria for a compensation object. In practice it functions as an eligibility rule definition table: each row describes the qualifying conditions and timing rules that determine whether a person or assignment is eligible for a given compensation object, such as a plan, program, plan type, or option.
The table is date-tracked. Its primary key, BEN_PRTN_ELIG_F_PK, is a composite of PRTN_ELIG_ID, EFFECTIVE_START_DATE, and EFFECTIVE_END_DATE, which is the standard Oracle effective-dating pattern used throughout the BEN schema. Records are versioned by date rather than overwritten, so historical eligibility definitions remain queryable.
The ETRM metadata classifies this object heuristically as standalone under a Data Vault lens. As a modeling suggestion, that indicates the table is not formally joined to other tables through declared foreign keys in the vault classification. In practice it is best treated as a satellite-style eligibility attribute set keyed by a business entity identifier (PRTN_ELIG_ID) and its effective dates. The physical schema documents 62 columns.
Key Information Stored
The following columns carry the substantive eligibility logic:
- PRTN_ELIG_ID — surrogate identifier for the eligibility rule; the leading column of the primary key.
- EFFECTIVE_START_DATE and EFFECTIVE_END_DATE — the date-tracked validity window that completes the composite primary key and forms the business-key candidate.
- BUSINESS_GROUP_ID — operating unit / business group context for the rule.
- PL_ID, PGM_ID, PTIP_ID, PLIP_ID, OIPL_ID — references to the compensation objects the rule qualifies (plan, program, plan type in plan, plan in program, option in plan list).
- MX_POE_VAL, MX_POE_UOM, MX_POE_RL — maximum period of enrollment value, unit of measure, and rule reference.
- MX_POE_DET_DT_CD, MX_POE_DET_DT_RL, MX_POE_APLS_CD — determination date code, rule, and the "applies" code governing when the maximum period is evaluated.
- WAIT_PERD_VAL, WAIT_PERD_UOM, WAIT_PERD_RL — waiting period value, unit, and rule.
- WAIT_PERD_DT_TO_USE_CD, WAIT_PERD_DT_TO_USE_RL — code and rule selecting the date used for the waiting period calculation.
- PRTN_EFF_STRT_DT_CD / _RL and PRTN_EFF_END_DT_CD / _RL — codes and rules determining the effective start and end dates of the participant's eligibility.
- EPA_ATTRIBUTE_CATEGORY and EPA_ATTRIBUTE1–30 — the standard Oracle descriptive flexfield (DFF) attribute block (EPA context), available for client-specific extension.
- OBJECT_VERSION_NUMBER and the audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) — concurrency control and audit trail.
- TRK_SCR_FOR_INELG_FLAG — flag controlling tracking or scoring for ineligibility outcomes.
Common Use Cases and Queries
Typical uses include auditing eligibility rule configuration, reproducing eligibility decisions for a given date, and reporting on waiting-period or maximum-period-of-enrollment settings across plans.
A common pattern is to retrieve the rule or rules effective on a given date, using the standard effective-date predicate:
SELECT prtn_elig_id, pl_id, ptn_elig_id, effective_start_date, effective_end_date FROM ben.ben_prtn_elig_f WHERE TRUNC(:p_date) BETWEEN effective_start_date AND effective_end_date;- Filter by compensation object when reconciling configuration for a specific plan:
WHERE pl_id = :pl_id AND SYSDATE BETWEEN effective_start_date AND effective_end_date. - Report waiting-period configuration grouped by unit:
SELECT wait_perd_uom, COUNT(*) FROM ben.ben_prtn_elig_f GROUP BY wait_perd_uom. - Join the DFF block to a value set for descriptive reporting:
SELECT prtn_elig_id, epa_attribute1, epa_attribute2 FROM ben.ben_prtn_elig_f, then resolve each attribute against its registered value set.
Because the table is date-tracked, any reporting query should include an effective-date predicate to avoid duplicate historical versions of the same PRTN_ELIG_ID.
Related Objects
Eligibility rules defined in this table are consumed by the BEN eligibility engine and by the configuration tables it qualifies. The most significant related objects are:
- BEN_PRTN_ELIG (and its non-date-tracked counterpart) — the master entity to which the _F date-tracked rows belong, joined on PRTN_ELIG_ID.
- BEN_PL_F — plan definition, joined on PL_ID.
- BEN_PGM_F — program definition, joined on PGM_ID.
- BEN_PTIP_F — plan type in program, joined on PTIP_ID.
- BEN_PLIP_F — plan in program, joined on PLIP_ID.
- BEN_OIPL_F — option in plan list, joined on OIPL_ID.
- BEN_PRTN_ELIG_F's DFF views — the descriptive flexfield view associated with EPA_ATTRIBUTE_CATEGORY / EPA_ATTRIBUTE1–30.
- The BEN eligibility APIs and the Advanced Benefits concurrent processes that evaluate eligibility at run time and persist results into participant eligibility and enrollment tables.
No declared foreign keys exist per the heuristic classification, so all relationships above are established by the referenced identifier columns rather than enforced database constraints.
-
Table: BEN_PRTN_ELIG_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_PRTN_ELIG_F, object_name:BEN_PRTN_ELIG_F, status:VALID, product: BEN - Advanced Benefits , description: Eligibility criteria for a compensation object. , implementation_dba_data: BEN.BEN_PRTN_ELIG_F ,
-
Table: BEN_PRTN_ELIG_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_PRTN_ELIG_F, object_name:BEN_PRTN_ELIG_F, status:VALID, product: BEN - Advanced Benefits , description: Eligibility criteria for a compensation object. , implementation_dba_data: BEN.BEN_PRTN_ELIG_F ,
-
Table: BEN_ELIG_TO_PRTE_RSN_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_F, object_name:BEN_ELIG_TO_PRTE_RSN_F, status:VALID, product: BEN - Advanced Benefits , description: The life event reason which may cause immediate inclusion/exclusion from a compensation object. , implementation_dba_data: BEN.BEN_ELIG_TO_PRTE_RSN_F ,
-
Table: BEN_ELIG_TO_PRTE_RSN_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_F, object_name:BEN_ELIG_TO_PRTE_RSN_F, status:VALID, product: BEN - Advanced Benefits , description: The life event reason which may cause immediate inclusion/exclusion from a compensation object. , implementation_dba_data: BEN.BEN_ELIG_TO_PRTE_RSN_F ,
-
VIEW: BEN.BEN_PRTN_ELIG_F#
12.2.2
-
VIEW: BEN.BEN_ELIG_TO_PRTE_RSN_F#
12.2.2
-
APPS.BEN_EPA_SHD SQL Statements
12.2.2
-
APPS.BEN_EPA_SHD SQL Statements
12.1.1
-
VIEW: BEN.BEN_ELIG_TO_PRTE_RSN_F#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_ELIG_TO_PRTE_RSN_F#, status:VALID,
-
VIEW: BEN.BEN_PRTN_ELIG_F#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_PRTN_ELIG_F#, status:VALID,
-
APPS.BEN_PEO_SHD SQL Statements
12.1.1
-
APPS.BEN_PEO_SHD SQL Statements
12.2.2
-
VIEW: APPS.BEN_PRTN_ELIG_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG_X, object_name:BEN_PRTN_ELIG_X, status:VALID,
-
VIEW: APPS.BEN_ELIG_TO_PRTE_RSN_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_X, object_name:BEN_ELIG_TO_PRTE_RSN_X, status:VALID,
-
View: BEN_ELIG_TO_PRTE_RSN_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_X, object_name:BEN_ELIG_TO_PRTE_RSN_X, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_TO_PRTE_RSN_X ,
-
View: BENBV_PRTN_ELIG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PRTN_ELIG_V, object_name:BENBV_PRTN_ELIG_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies participation eligibility criteria for a program, plan type in program, plan in program, plan, or option in plan. , implementation_dba_data: APPS.BENBV_PRTN_ELIG_V ,
-
VIEW: APPS.BEN_ELIG_TO_PRTE_RSN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN, object_name:BEN_ELIG_TO_PRTE_RSN, status:VALID,
-
View: BENBV_ELIG_TO_PRTE_RSN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ELIG_TO_PRTE_RSN_V, object_name:BENBV_ELIG_TO_PRTE_RSN_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on eligibility for a program, plan type in program, plan in program, plan, or option in plan. , implementation_dba_data: APPS.BENBV_ELIG_TO_PRTE_RSN_V ,
-
View: BEN_PRTN_ELIG
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG, object_name:BEN_PRTN_ELIG, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_PRTN_ELIG ,
-
VIEW: APPS.BEN_PRTN_ELIG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG, object_name:BEN_PRTN_ELIG, status:VALID,
-
VIEW: APPS.BEN_PRTN_ELIG
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG, object_name:BEN_PRTN_ELIG, status:VALID,
-
View: BEN_PRTN_ELIG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG_V, object_name:BEN_PRTN_ELIG_V, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_PRTN_ELIG_V ,
-
VIEW: APPS.BEN_PRTN_ELIG_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG_X, object_name:BEN_PRTN_ELIG_X, status:VALID,
-
VIEW: APPS.BEN_PRTN_ELIG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG_V, object_name:BEN_PRTN_ELIG_V, status:VALID,
-
VIEW: APPS.BEN_ELIG_TO_PRTE_RSN
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN, object_name:BEN_ELIG_TO_PRTE_RSN, status:VALID,
-
View: BENBV_PRTN_ELIG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PRTN_ELIG_V, object_name:BENBV_PRTN_ELIG_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies participation eligibility criteria for a program, plan type in program, plan in program, plan, or option in plan. , implementation_dba_data: APPS.BENBV_PRTN_ELIG_V ,
-
View: BEN_ELIG_TO_PRTE_RSN
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN, object_name:BEN_ELIG_TO_PRTE_RSN, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_TO_PRTE_RSN ,
-
View: BENBV_ELIG_TO_PRTE_RSN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ELIG_TO_PRTE_RSN_V, object_name:BENBV_ELIG_TO_PRTE_RSN_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the impact of a life event reason on eligibility for a program, plan type in program, plan in program, plan, or option in plan. , implementation_dba_data: APPS.BENBV_ELIG_TO_PRTE_RSN_V ,
-
VIEW: APPS.BEN_ELIG_TO_PRTE_RSN_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_X, object_name:BEN_ELIG_TO_PRTE_RSN_X, status:VALID,
-
View: BEN_PRTN_ELIG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG_V, object_name:BEN_PRTN_ELIG_V, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_PRTN_ELIG_V ,
-
View: BEN_PRTN_ELIG_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG_X, object_name:BEN_PRTN_ELIG_X, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_PRTN_ELIG_X ,
-
VIEW: APPS.BEN_PRTN_ELIG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG_V, object_name:BEN_PRTN_ELIG_V, status:VALID,
-
View: BEN_ELIG_TO_PRTE_RSN_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_X, object_name:BEN_ELIG_TO_PRTE_RSN_X, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_TO_PRTE_RSN_X ,
-
View: BEN_PRTN_ELIG_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG_X, object_name:BEN_PRTN_ELIG_X, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_PRTN_ELIG_X ,
-
VIEW: APPS.BEN_ELIG_TO_PRTE_RSN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_V, object_name:BEN_ELIG_TO_PRTE_RSN_V, status:VALID,
-
VIEW: APPS.BEN_ELIG_TO_PRTE_RSN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_V, object_name:BEN_ELIG_TO_PRTE_RSN_V, status:VALID,
-
View: BEN_ELIG_TO_PRTE_RSN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_V, object_name:BEN_ELIG_TO_PRTE_RSN_V, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_TO_PRTE_RSN_V ,
-
View: BEN_PRTN_ELIG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_PRTN_ELIG, object_name:BEN_PRTN_ELIG, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_PRTN_ELIG ,
-
View: BEN_ELIG_TO_PRTE_RSN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_V, object_name:BEN_ELIG_TO_PRTE_RSN_V, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_TO_PRTE_RSN_V ,
-
View: BEN_ELIG_TO_PRTE_RSN
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN, object_name:BEN_ELIG_TO_PRTE_RSN, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_ELIG_TO_PRTE_RSN ,
-
VIEW: APPS.BENBV_PRTN_ELIG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PRTN_ELIG_V, object_name:BENBV_PRTN_ELIG_V, status:VALID,
-
VIEW: APPS.BENBV_PRTN_ELIG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PRTN_ELIG_V, object_name:BENBV_PRTN_ELIG_V, status:VALID,
-
VIEW: APPS.BENBV_ELIG_TO_PRTE_RSN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ELIG_TO_PRTE_RSN_V, object_name:BENBV_ELIG_TO_PRTE_RSN_V, status:VALID,
-
VIEW: APPS.BENBV_ELIG_TO_PRTE_RSN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_ELIG_TO_PRTE_RSN_V, object_name:BENBV_ELIG_TO_PRTE_RSN_V, status:VALID,
-
TABLE: BEN.BEN_PRTN_ELIG_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_PRTN_ELIG_F, object_name:BEN_PRTN_ELIG_F, status:VALID,
-
TABLE: BEN.BEN_ELIG_TO_PRTE_RSN_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_F, object_name:BEN_ELIG_TO_PRTE_RSN_F, status:VALID,
-
TABLE: BEN.BEN_PRTN_ELIG_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_PRTN_ELIG_F, object_name:BEN_PRTN_ELIG_F, status:VALID,
-
TABLE: BEN.BEN_ELIG_TO_PRTE_RSN_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ELIG_TO_PRTE_RSN_F, object_name:BEN_ELIG_TO_PRTE_RSN_F, status:VALID,
-
APPS.BEN_COBJ_CACHE SQL Statements
12.1.1
-
APPS.BEN_COBJ_CACHE SQL Statements
12.2.2