Search Results ptnl_ler_for_per_id
Overview
The BEN_PTNL_LER_FOR_PER table is a core data object within the Oracle E-Business Suite Advanced Benefits (BEN) module, specifically for versions 12.1.1 and 12.2.2. As defined in the ETRM documentation, it stores records representing a "Participant potential life event." This table is central to the life event management engine, which automates benefits enrollment. It acts as a staging or processing table that holds information about life events that a participant (employee, dependent, etc.) is potentially eligible for or may be required to act upon within a given enrollment period. Its role is to facilitate the determination and execution of the correct enrollment actions based on personal status changes.
Key Information Stored
The table's primary key is the system-generated identifier PTNL_LER_FOR_PER_ID. A critical foreign key is ENRT_PERD_ID, which links the potential life event to a specific enrollment period (BEN_ENRT_PERD), anchoring the event to the correct processing timeframe. While the provided metadata does not list all columns, typical data stored in such a table includes identifiers for the person (PER_ID), the specific life event (LER_ID), the associated benefits program or plan, and status flags indicating the processing state of the potential event (e.g., PENDING, PROCESSED, ERROR). It essentially captures the intersection of a person, a possible life event rule, and an enrollment window.
Common Use Cases and Queries
This table is primarily accessed during batch processes for life event detection and enrollment. Common use cases include generating a list of participants who have pending life events for a manager's review, troubleshooting enrollment batch failures, and auditing the lifecycle of a life event. A typical reporting query might join to person (PER_ALL_PEOPLE_F) and life event (BEN_LER_F) tables to produce a readable list.
- Sample Query: To find pending potential life events for a specific enrollment period:
SELECT p.ptnl_ler_for_per_id, p.person_id, l.ler_name
FROM ben_ptnl_ler_for_per p, ben_ler_f l
WHERE p.ler_id = l.ler_id
AND p.enrt_perd_id = 12345
AND p.process_status = 'PENDING';
Related Objects
As per the ETRM metadata, BEN_PTNL_LER_FOR_PER has defined relationships with several key benefits tables.
- BEN_ENRT_PERD (Enrollment Period): Linked via ENRT_PERD_ID foreign key. This defines the timeframe for the potential event.
- BEN_PER_IN_LER (Person in Life Event): This table has a foreign key (PTNL_LER_FOR_PER_ID) referencing BEN_PTNL_LER_FOR_PER. This indicates that once a potential life event is confirmed and acted upon, a concrete record is created in BEN_PER_IN_LER to track the actual, active life event instance for the person.
- It is also inherently related to core tables like BEN_LER_F (Life Event Rules) and PER_ALL_PEOPLE_F (Person Model).
-
Table: BEN_PTNL_LER_FOR_PER
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_PTNL_LER_FOR_PER, object_name:BEN_PTNL_LER_FOR_PER, status:VALID, product: BEN - Advanced Benefits , description: Participant potential life event. , implementation_dba_data: BEN.BEN_PTNL_LER_FOR_PER ,
-
Table: BEN_PTNL_LER_FOR_PER
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_PTNL_LER_FOR_PER, object_name:BEN_PTNL_LER_FOR_PER, status:VALID, product: BEN - Advanced Benefits , description: Participant potential life event. , implementation_dba_data: BEN.BEN_PTNL_LER_FOR_PER ,
-
View: BENBV_PTNL_LER_FOR_PER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PTNL_LER_FOR_PER_V, object_name:BENBV_PTNL_LER_FOR_PER_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the potential life events that exists for a person. , implementation_dba_data: APPS.BENBV_PTNL_LER_FOR_PER_V ,
-
View: BENBV_PTNL_LER_FOR_PER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PTNL_LER_FOR_PER_V, object_name:BENBV_PTNL_LER_FOR_PER_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the potential life events that exists for a person. , implementation_dba_data: APPS.BENBV_PTNL_LER_FOR_PER_V ,
-
View: BENBV_PER_IN_LER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PER_IN_LER_V, object_name:BENBV_PER_IN_LER_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies all life events for a person, including identifying which life event, if any, is currently in progress for the specified person. , implementation_dba_data: APPS.BENBV_PER_IN_LER_V ,
-
View: BENBV_PER_IN_LER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PER_IN_LER_V, object_name:BENBV_PER_IN_LER_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies all life events for a person, including identifying which life event, if any, is currently in progress for the specified person. , implementation_dba_data: APPS.BENBV_PER_IN_LER_V ,