Search Results ben_batch_dpnt_info
Overview
The BEN_BATCH_DPNT_INFO table is a core data object within the Oracle E-Business Suite Advanced Benefits (BEN) module. It serves as a transient or operational repository for dependent information that is generated during a batch process run. Its primary role is to support the complex batch operations within Advanced Benefits, such as life event processing, enrollment, and eligibility determination, by temporarily staging dependent-level data that is being created, updated, or validated. This table is integral to ensuring data integrity and traceability during automated benefit administration tasks.
Key Information Stored
The table's structure is centered around uniquely identifying and linking batch-generated dependent records to the broader benefit action workflow. The most critical column is BATCH_DPNT_ID, which serves as the primary key and uniquely identifies each dependent record created in a batch session. Another essential column is BENEFIT_ACTION_ID, a foreign key that links the dependent information to a specific action recorded in the BEN_BENEFIT_ACTIONS table. This connection is vital for auditing and understanding the context of the batch operation. While the provided metadata does not list all columns, typical data stored would include dependent person identifiers, relationship codes, eligibility indicators, and timestamps related to the batch creation.
Common Use Cases and Queries
This table is primarily accessed for troubleshooting, auditing, and reporting on batch-dependent creation processes. A common scenario involves investigating a specific batch run to verify which dependents were processed. A typical query would join to the BEN_BENEFIT_ACTIONS table to provide context.
- Identifying dependents created by a specific benefit action:
SELECT bdi.* FROM ben_batch_dpnt_info bdi WHERE bdi.benefit_action_id = <action_id>;
- Auditing all batch-created dependents within a date range, linked to their parent action:
SELECT bdi.batch_dpnt_id, bdi.benefit_action_id, ba.action_type FROM ben_batch_dpnt_info bdi JOIN ben_benefit_actions ba ON bdi.benefit_action_id = ba.benefit_action_id WHERE ba.creation_date BETWEEN :p_start_date AND :p_end_date;
Related Objects
The BEN_BATCH_DPNT_INFO table has a defined relationship with one other core Benefits table, as documented in the provided metadata.
- BEN_BENEFIT_ACTIONS: This is the primary parent table. The relationship is established via the foreign key constraint where BEN_BATCH_DPNT_INFO.BENEFIT_ACTION_ID references BEN_BENEFIT_ACTIONS. This join is essential for tracing batch-dependent records back to the initiating enrollment or life event action.
The table's primary key constraint, BEN_BATCH_DPNT_INFO_PK on the BATCH_DPNT_ID column, ensures the uniqueness of each staged dependent record and is likely referenced by other objects or application logic not detailed in the excerpt.
-
Table: BEN_BATCH_DPNT_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_DPNT_INFO, object_name:BEN_BATCH_DPNT_INFO, status:VALID, product: BEN - Advanced Benefits , description: Dependent information created during batch run. , implementation_dba_data: BEN.BEN_BATCH_DPNT_INFO ,
-
Table: BEN_BATCH_DPNT_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_DPNT_INFO, object_name:BEN_BATCH_DPNT_INFO, status:VALID, product: BEN - Advanced Benefits , description: Dependent information created during batch run. , implementation_dba_data: BEN.BEN_BATCH_DPNT_INFO ,
-
Table: BEN_BENEFIT_ACTIONS
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BENEFIT_ACTIONS, object_name:BEN_BENEFIT_ACTIONS, status:VALID, product: BEN - Advanced Benefits , description: Run parameters for benefits batch processes. , implementation_dba_data: BEN.BEN_BENEFIT_ACTIONS ,
-
Table: BEN_BENEFIT_ACTIONS
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BENEFIT_ACTIONS, object_name:BEN_BENEFIT_ACTIONS, status:VALID, product: BEN - Advanced Benefits , description: Run parameters for benefits batch processes. , implementation_dba_data: BEN.BEN_BENEFIT_ACTIONS ,