Search Results ben_batch
Overview
BEN.BEN_BATCH_BNFT_CERT_INFO is a transactional staging table within the Oracle E-Business Suite Benefits (BEN) schema. It stores benefit certification related data that results from running concurrent manager processes. The BEN_BATCH family of tables is designed to capture concurrent manager output so that results remain available for inclusion in reports such as the activity summary report and the audit log. Critically, this information is persisted regardless of whether the originating process is run in validate (rollback) mode or commit mode, which allows administrators and auditors to review what a process would have done before, during, or after the actual commit.
Under the heuristic Data Vault classification mined from its foreign key structure, this table is modeled as a standalone structure — that is, it neither functions as a hub, link, nor satellite in the strict Data Vault sense. Its role is instead that of a batch results or audit staging entity keyed on a system-generated identifier. In Oracle EBS 12.1.1 and 12.2.2, the table resides in the APPS_TS_TX_DATA tablespace with a PCTFREE of 10, and its indexes reside in APPS_TS_TX_IDX.
Key Information Stored
The table is anchored by the surrogate primary key BATCH_BENFT_CERT_ID (NUMBER(15)), which is defined by the unique index BEN_BATCH_BNFT_CERT_INFO_PK. This column is system-generated and serves as the single documented unique business-key candidate; no composite natural key is documented for this table. The most significant business columns are:
- BATCH_BENFT_CERT_ID — System-generated primary key; uniquely identifies each batch certification row.
- BENEFIT_ACTION_ID — Foreign key to BEN_BENEFIT_ACTION, linking the row to the benefit action that produced it. Indexed by BEN_BATCH_BNFT_CERT_INFO_FK1.
- PERSON_ID — Foreign key to PER_PEOPLE_F, identifying the person to whom the certification result applies. Indexed by BEN_BATCH_BNFT_CERT_INFO_N2.
- ACTN_TYP_ID — Foreign key to BEN_ACTN_TYP_F, identifying the action type associated with the certification record. This is the object referenced by the user's search term "ben_actn_typ_f".
- TYP_CD — A VARCHAR2(30) type code used to classify the certification record.
- ENRT_CTFN_RECD_DT — The enrollment certification received date, the principal business date captured for certification processing.
- OBJECT_VERSION_NUMBER — System-generated versioning column that increments by one on each row update and supports optimistic locking.
- Standard Who columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, and CREATION_DATE, which provide full audit attribution in conformance with EBS conventions.
Common Use Cases and Queries
Because the table stores batch output independent of commit or rollback, its primary use cases center on reconciliation, audit, and exception reporting. A typical query joins the table to BEN_BENEFIT_ACTION and PER_PEOPLE_F to report on certification results per person per action:
- Audit reporting: retrieve all rows for a specific benefit action to confirm what the concurrent process recorded, regardless of commit status.
- Exception analysis: identify rows where ENRT_CTFN_RECD_DT is null or where TYP_CD indicates an unexpected classification.
- Staging reconciliation: compare batch rows against committed enrollment data to detect discrepancies between validate and commit runs.
Sample pattern: SELECT b.BATCH_BENFT_CERT_ID, b.PERSON_ID, b.ACTN_TYP_ID, b.ENRT_CTFN_RECD_DT FROM BEN.BEN_BATCH_BNFT_CERT_INFO b WHERE b.BENEFIT_ACTION_ID = :action_id;. Joins to BEN_ACTN_TYP_F via ACTN_TYP_ID allow action type description lookup, and joins to PER_PEOPLE_F via PERSON_ID resolve the person's name.
Related Objects
- BEN.BEN_BENEFIT_ACTION — Referenced by BENEFIT_ACTION_ID; the parent action for the batch result.
- BEN.BEN_ACTN_TYP_F — Referenced by ACTN_TYP_ID; provides action type definition and description.
- PER.PER_PEOPLE_F — Referenced by PERSON_ID; supplies person-level identity data.
- BEN.BEN_BATCH_* (sibling tables) — Share the batch staging pattern for other concurrent process outputs.
- FND.FND_USER / FND.FND_LOGINS — Referenced by the Who columns for user and login attribution.
- Activity Summary Report and Audit Log — Consume this table's rows as reporting sources.
-
TABLE: BEN.BEN_BATCH_BNFT_CERT_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_BNFT_CERT_INFO, object_name:BEN_BATCH_BNFT_CERT_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_BNFT_CERT_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_BNFT_CERT_INFO, object_name:BEN_BATCH_BNFT_CERT_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_COMMU_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_COMMU_INFO, object_name:BEN_BATCH_COMMU_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_COMMU_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_COMMU_INFO, object_name:BEN_BATCH_COMMU_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_ACTN_ITEM_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_ACTN_ITEM_INFO, object_name:BEN_BATCH_ACTN_ITEM_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_ACTN_ITEM_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_ACTN_ITEM_INFO, object_name:BEN_BATCH_ACTN_ITEM_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_ELIG_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_ELIG_INFO, object_name:BEN_BATCH_ELIG_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_ELIG_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_ELIG_INFO, object_name:BEN_BATCH_ELIG_INFO, status:VALID,
-
TABLE: BEN.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,
-
TABLE: BEN.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,
-
TABLE: BEN.BEN_BATCH_ELCTBL_CHC_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_ELCTBL_CHC_INFO, object_name:BEN_BATCH_ELCTBL_CHC_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_ELCTBL_CHC_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_ELCTBL_CHC_INFO, object_name:BEN_BATCH_ELCTBL_CHC_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_RATE_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_RATE_INFO, object_name:BEN_BATCH_RATE_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_RATE_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_RATE_INFO, object_name:BEN_BATCH_RATE_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_LER_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_LER_INFO, object_name:BEN_BATCH_LER_INFO, status:VALID,
-
TABLE: BEN.BEN_BATCH_LER_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_BATCH_LER_INFO, object_name:BEN_BATCH_LER_INFO, status:VALID,
-
eTRM - BEN Tables and Views
12.2.2
description: Start and End periods. ,
-
eTRM - BEN Tables and Views
12.1.1
description: Start and End periods. ,