Search Results ben_per_in_ler
Overview
The BEN_PER_IN_LER table is a core data object within the Oracle E-Business Suite Advanced Benefits (BEN) module, versions 12.1.1 and 12.2.2. It serves as the primary transactional record for tracking a person (employee, contingent worker, or other participant) who is experiencing a life event. A life event, or Life Event Reason (LER), is a qualifying occurrence—such as marriage, birth of a child, or a change in employment status—that triggers an opportunity for benefits enrollment or changes. This table acts as the central hub for a life event instance, linking the person, the specific life event reason, and the subsequent enrollment processes. Its existence is fundamental to the event-driven enrollment architecture of Advanced Benefits.
Key Information Stored
The primary identifier for a life event instance is the PER_IN_LER_ID column, which is the primary key (BEN_PER_IN_LER_PK). A critical foreign key in this table is PTNL_LER_FOR_PER_ID, which links to the BEN_PTNL_LER_FOR_PER table. This relationship associates the person's life event record with the specific potential life event that was detected for them, connecting the transactional record back to the system's initial identification of the qualifying event. While the provided ETRM excerpt does not list all columns, typical columns in such a table would include identifiers for the person (PERSON_ID), the life event reason (LER_ID), effective dates (EFFECTIVE_DATE), the process status, and the associated benefits batch (BNFT_BATCH_ID).
Common Use Cases and Queries
This table is central to reporting, auditing, and troubleshooting the life event and enrollment lifecycle. Common use cases include generating reports of all life events processed within a specific period, investigating enrollment errors by tracing from a person's record to their specific life event instance, and reconciling data during benefits administration. A fundamental query pattern retrieves life event details for a person or a batch.
- Identifying life events for a person:
SELECT * FROM ben_per_in_ler WHERE person_id = <person_id> ORDER BY effective_date; - Joining to view life event reasons:
SELECT pil.*, plf.ler_id FROM ben_per_in_ler pil, ben_ptnl_ler_for_per plf WHERE pil.ptnl_ler_for_per_id = plf.ptnl_ler_for_per_id; - Troubleshooting a specific enrollment batch:
SELECT count(*), process_status FROM ben_per_in_ler WHERE bnft_batch_id = <batch_id> GROUP BY process_status;
Related Objects
The BEN_PER_IN_LER table has extensive relationships, as indicated by its numerous foreign key dependencies. It is the parent table for a wide array of benefits transactional tables, underscoring its pivotal role. Key child tables include:
- BEN_BATCH_LER_INFO: Links life event instances to the processing batch.
- BEN_PRTT_ENRT_RSLT_F: Stores the final enrollment results stemming from the life event.
- BEN_ELIG_PER_F / BEN_ELIG_CVRD_DPNT_F: Record eligibility determinations for the person and dependents based on the life event.
- BEN_ELIG_PER_ELCTBL_CHC: Holds eligible choice options for the person.
- BEN_PL_BNF_F / BEN_PRTT_PREM_F / BEN_PRTT_RT_VAL: Store calculated benefits, premiums, and rates resulting from elections made during the life event.
- BEN_BNFT_PRVDD_LDGR_F: Tracks the benefits provided ledger entries.
Its primary parent relationship is with BEN_PTNL_LER_FOR_PER, which supplies the PTNL_LER_FOR_PER_ID.
-
Table: BEN_PER_IN_LER
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_PER_IN_LER, object_name:BEN_PER_IN_LER, status:VALID, product: BEN - Advanced Benefits , description: Person having a life event. , implementation_dba_data: BEN.BEN_PER_IN_LER ,
-
Table: BEN_PER_IN_LER
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_PER_IN_LER, object_name:BEN_PER_IN_LER, status:VALID, product: BEN - Advanced Benefits , description: Person having a life event. , implementation_dba_data: BEN.BEN_PER_IN_LER ,
-
APPS.BEN_CCP_BUS dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_UPDATE_LEDGERS dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.GHR_CORR_CANC_SF52 dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_CWB_RSGN_EMP dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_MAINTAIN_DESIGNEE_ELIG dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_MAINTAIN_DESIGNEE_ELIG dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_PREM_PL_OIPL_MONTHLY dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_PEN_BUS dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_EXT_ENRT dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.PQH_GSP_DEFAULT dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.GHR_BENEFITS_EIT dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_CWB_POST_PROCESS dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_PIL_DEL dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BENUTILS dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_GENERATE_DPNT_COMM dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_CWB_MASS_NOTIFN_PKG dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_PEP_CACHE dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_ENROLLMENT_PROCESS dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_PIL_DEL dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_DETERMINE_ELIGIBILITY2 dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_COLLAPSE_LIFE_EVENT dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.PQH_FR_CR_PATH_ENGINE_PKG dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_EVALUATE_RATE_PROFILES dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.PER_PDS_UTILS dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_PEP_CACHE2 dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_MANAGE_LIFE_EVENTS dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_GLOBAL_ENRT dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_DETERMINE_ELIGIBILITY3 dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_DETERMINE_COVERAGE dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_BACK_OUT_LIFE_EVENT dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_MANAGE_DEFAULT_ENRT dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.HR_PERSON_RECORD dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_DETERMINE_ELIGIBILITY2 dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_DETERMINE_RATE_CHG dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.HRI_OPL_BEN_ELCTN_EVNTS_EQ dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.PQH_GSP_POST_PROCESS dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_DETERMINE_ELIGIBILITY3 dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_DETERMINE_DPNT_ELIGIBILITY dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_PERSON_DELETE dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_CWB_DATA_MODEL_UPGRADE dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_PIL_CACHE dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_EVALUATE_PTNL_LF_EVT dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.PQH_RANKING dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_PIL_OBJECT dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_DETERMINE_ELIGIBILITY dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_EVALUATE_RATE_PROFILES dependencies on BEN_PER_IN_LER
12.2.2
-
APPS.BEN_EXT_EVALUATE_INCLUSION dependencies on BEN_PER_IN_LER
12.1.1
-
APPS.BEN_CWB_BACK_OUT_CONC dependencies on BEN_PER_IN_LER
12.2.2