Search Results ben_cvrd_dpnt_ctfn_prvdd_f
Overview
The BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F table is a core datastore within the Oracle E-Business Suite Advanced Benefits (BEN) module. It stores certification records provided for covered dependents, capturing the evidence an employee submits to prove that a dependent (or the dependent designation itself) satisfies a plan's eligibility certification requirements. In EBS 12.1.1 and 12.2.2 this table is dated (the _F suffix and the presence of EFFECTIVE_START_DATE/EFFECTIVE_END_DATE indicate a date-tracked, non-translated table), so each certification can exist as multiple effective-dated row versions rather than a single mutable row.
From a data-modeling perspective, the metadata's heuristic Data Vault classification lists this object as standalone. In practice, however, the combination of a surrogate key, effective dates, descriptive certification attributes, and a foreign-key-style reference to the covered dependent (ELIG_CVRD_DPNT_ID) and to the enrollment action (PRTT_ENRT_ACTN_ID) suggests a satellite pattern attached to the covered-dependent hub, with the dated rows acting as the change history. This classification is offered as a modeling suggestion only; the physical object is a standard EBS date-tracked table.
Key Information Stored
The table is defined in the BEN schema with 50 documented columns. The most significant are:
- CVRD_DPNT_CTFN_PRVDD_ID — the surrogate primary key component that uniquely identifies the certification row.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — the date-tracked validity window; together with the surrogate ID these form the primary key
BEN_CVRD_DPNT_CTFN_PRVDD_F_PK. - ELIG_CVRD_DPNT_ID — the covered dependent (eligibility covered dependent) to which the certification applies; this is the principal business linkage.
- PRTT_ENRT_ACTN_ID — the participant enrollment action that generated or is associated with the certification.
- DPNT_DSGN_CTFN_TYP_CD — the code identifying the type of dependent-designation certification.
- DPNT_DSGN_CTFN_RQD_FLAG — indicates whether the certification is required for the dependent designation.
- DPNT_DSGN_CTFN_RECD_DT — the date the certification was received.
- BUSINESS_GROUP_ID — the business group (enterprise) that owns the record.
- CCP_ATTRIBUTE_CATEGORY and CCP_ATTRIBUTE1–CCP_ATTRIBUTE30 — a descriptive flexfield (DFF) block enabling client-specific certification attributes.
- OBJECT_VERSION_NUMBER — optimistic-locking version column.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATED_BY, CREATION_DATE, LAST_UPDATE_LOGIN — standard EBS WHO audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent-program traceability columns.
The unique index BEN_CVRD_DPNT_CTFN_PRVDD_F_PK on (CVRD_DPNT_CTFN_PRVDD_ID, EFFECTIVE_START_DATE, EFFECTIVE_END_DATE) is the documented business-key candidate and should be treated as the row-identity key for dated lookups.
Common Use Cases and Queries
Typical scenarios include reporting on certification compliance, auditing which dependents have provided required documentation, and troubleshooting enrollment or eligibility failures. A common query retrieves the currently effective certification for a dependent:
SELECT * FROM ben_cvrd_dpnt_ctfn_prvdd_f WHERE elig_cvrd_dpnt_id = :p_id AND TRUNC(SYSDATE) BETWEEN effective_start_date AND effective_end_date;- Reporting certifications by type and receipt date:
SELECT dpnt_dsgn_ctfn_typ_cd, COUNT(*) FROM ben_cvrd_dpnt_ctfn_prvdd_f WHERE dpnt_dsgn_ctfn_recd_dt >= :from_date GROUP BY dpnt_dsgn_ctfn_typ_cd; - Identifying dependents still owing a required certification: filter on
dpnt_dsgn_ctfn_rqd_flag = 'Y'with no received date.
Because the table is date-tracked, all queries must apply an effective-date predicate or they will return historic versions, inflating counts and producing duplicate rows in reports.
Related Objects
The metadata classifies this object as standalone with no mined foreign keys, but the following objects are the most significant for joins and dependencies based on the documented columns:
- BEN_ELIG_CVRD_DPNT (or the covered-dependent eligibility entity) — joined via
ELIG_CVRD_DPNT_ID. - BEN_PRTT_ENRT_ACTN — joined via
PRTT_ENRT_ACTN_IDfor enrollment-action context. - BEN_PRTT_ENRT_RSLT_F — participant enrollment results, linked through the enrollment action.
- BEN_PER_ELIG_CVRD_DPNT_F — person/eligibility covered-dependent rows.
- BEN_DPNT_DSGN_CTFN_TYP — lookup of dependent design certification types referenced by
DPNT_DSGN_CTFN_TYP_CD. - FND_FLEX_VALUES / FND_FLEX_VALUE_SETS — used to decode any flexfield or lookup values exposed in the CCP attribute columns and certification type.
-
Table: BEN_CVRD_DPNT_CTFN_PRVDD_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F, status:VALID, product: BEN - Advanced Benefits , description: Certification provided for covered dependents. , implementation_dba_data: BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F ,
-
Table: BEN_CVRD_DPNT_CTFN_PRVDD_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F, status:VALID, product: BEN - Advanced Benefits , description: Certification provided for covered dependents. , implementation_dba_data: BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F ,
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F_DFV
12.1.1
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F_DFV
12.2.2
-
APPS.BEN_CCP_SHD SQL Statements
12.1.1
-
APPS.BEN_CCP_SHD SQL Statements
12.2.2
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_D
12.1.1
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_D
12.2.2
-
VIEW: APPS.BENBV_CVRD_DPNT_CTFN_PRVDD_V
12.1.1
-
SYNONYM: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F, status:VALID,
-
VIEW: APPS.BENBV_CVRD_DPNT_CTFN_PRVDD_V
12.2.2
-
SYNONYM: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F, status:VALID,
-
VIEW: BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F#, status:VALID,
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_V
12.2.2
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_V
12.1.1
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_X
12.2.2
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_X
12.1.1
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD
12.1.1
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD
12.2.2
-
VIEW: BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F#
12.2.2
-
View: BEN_CVRD_DPNT_CTFN_PRVDD_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CVRD_DPNT_CTFN_PRVDD_D, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_D, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_D ,
-
View: BEN_CVRD_DPNT_CTFN_PRVDD_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CVRD_DPNT_CTFN_PRVDD_D, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_D, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_D ,
-
PACKAGE BODY: APPS.BEN_CCP_SHD
12.2.2
-
PACKAGE BODY: APPS.BEN_CCP_SHD
12.1.1
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F_DFV, status:VALID,
-
APPS.BEN_CCP_BUS SQL Statements
12.2.2
-
APPS.BEN_CCP_BUS SQL Statements
12.1.1
-
TRIGGER: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F_WHO, status:VALID,
-
TRIGGER: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F_WHO, status:VALID,
-
VIEW: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F_DFV, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_SHD, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_DEL, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_INS, status:VALID,
-
TABLE: BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F, status:VALID,
-
TABLE: BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CVRD_DPNT_CTFN_PRVDD_F, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_F, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_SHD, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_DEL, status:VALID,
-
TRIGGER: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F_WHO
12.2.2
-
TRIGGER: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_F_WHO
12.1.1
-
PACKAGE BODY: APPS.BEN_CCP_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_BUS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_BUS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_INS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_UPD, status:VALID,
-
PACKAGE BODY: APPS.BEN_CCP_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CCP_UPD, status:VALID,
-
APPS.BEN_CCP_DEL SQL Statements
12.2.2
-
View: BENBV_CVRD_DPNT_CTFN_PRVDD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CVRD_DPNT_CTFN_PRVDD_V, object_name:BENBV_CVRD_DPNT_CTFN_PRVDD_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the type of certification that was provided by a participant for a dependent covered by one of his or her benefits. , implementation_dba_data: APPS.BENBV_CVRD_DPNT_CTFN_PRVDD_V ,
-
View: BENBV_CVRD_DPNT_CTFN_PRVDD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CVRD_DPNT_CTFN_PRVDD_V, object_name:BENBV_CVRD_DPNT_CTFN_PRVDD_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the type of certification that was provided by a participant for a dependent covered by one of his or her benefits. , implementation_dba_data: APPS.BENBV_CVRD_DPNT_CTFN_PRVDD_V ,
-
APPS.BEN_CCP_DEL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_API, status:VALID,
-
PACKAGE BODY: APPS.BEN_CVRD_DPNT_CTFN_PRVDD_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CVRD_DPNT_CTFN_PRVDD_API, status:VALID,