Search Results ben_cbr_quald_bnf
Overview
BEN_CBR_QUALD_BNF is a table in the BEN (Advanced Benefits) product schema within Oracle E-Business Suite, present in both 12.1.1 and 12.2.2. The table identifies participants who have experienced a COBRA (US Consolidated Omnibus Budget Reconciliation Act) qualifying life event. COBRA requires that employers offer continuation of group health coverage to qualified beneficiaries following specific events — termination of employment, reduction in hours, divorce, death of a covered employee, and similar triggers. This table records the qualified beneficiary designation arising from such an event and links it to the participant's eligibility records for the continuation period.
The object is documented as VALID in the ETRM repository. Its physical structure carries 49 columns, an explicit primary key constraint (BEN_CBR_QUALD_BNF_PK on CBR_QUALD_BNF_ID), and a foreign key to HR_ALL_ORGANIZATION_UNITS through BUSINESS_GROUP_ID, which anchors the record to a specific business group for multi-organization filtering and security. The heuristic Data Vault classification for this object is satellite-leaning: its structure suggests it operates as a descriptive satellite attached to a core participant/event hub rather than as an independent hub or a pure link. This classification is a modeling suggestion only, derived from the foreign-key topology, and should not be treated as a normative architectural statement.
Key Information Stored
The table's most significant columns include the following. Note that the descriptive attribute block (CQB_ATTRIBUTE1 through CQB_ATTRIBUTE30, with CQB_ATTRIBUTE_CATEGORY) is a standard Oracle EBS descriptive-flexfield pattern and is typically not used for core processing logic, though it is available for customer extensions.
- CBR_QUALD_BNF_ID — surrogate primary key, the unique business-key candidate documented in BEN_CBR_QUALD_BNF_PK. All foreign keys from dependent tables reference this column.
- QUALD_BNF_PERSON_ID — the person identified as the qualified beneficiary under COBRA. This is the central business identifier for the row and is distinct from the surrogate primary key.
- BUSINESS_GROUP_ID — foreign key to HR_ALL_ORGANIZATION_UNITS; scopes the record to a business group and drives security and multi-org filtering.
- QUALD_BNF_FLAG — indicator of qualified beneficiary status.
- CBR_ELIG_PERD_STRT_DT and CBR_ELIG_PERD_END_DT — the COBRA eligibility (continuation) period start and end dates, essential for coverage-window reporting.
- CBR_INELG_RSN_CD — the reason code describing why a participant is ineligible for the benefit if applicable.
- CVRD_EMP_PERSON_ID — the covered employee (the person whose event generated COBRA rights).
- PGM_ID, PTIP_ID, PL_TYP_ID — program, plan-in-program, and plan-type identifiers that tie the qualified beneficiary to a specific benefit offering.
- OBSOLETE — flag indicating the row is no longer active.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE, OBJECT_VERSION_NUMBER — standard who-columns and optimistic locking.
Common Use Cases and Queries
Typical reporting scenarios include producing a COBRA-eligible population list, validating that continuation periods do not overlap plan enrollment, and auditing the business-group security of qualified beneficiary rows. A representative query joining to the participant/event table and to the organization unit follows:
SELECT q.CBR_QUALD_BNF_ID, q.QUALD_BNF_PERSON_ID, q.CBR_ELIG_PERD_STRT_DT, q.CBR_ELIG_PERD_END_DT, q.CBR_INELG_RSN_CD, l.PERSON_ID, o.NAME
FROM BEN.BEN_CBR_QUALD_BNF q
JOIN BEN.BEN_CBR_PER_IN_LER l ON l.CBR_QUALD_BNF_ID = q.CBR_QUALD_BNF_ID
JOIN HR.HR_ALL_ORGANIZATION_UNITS o ON o.ORGANIZATION_ID = q.BUSINESS_GROUP_ID
WHERE q.OBSOLETE = 'N' AND q.BUSINESS_GROUP_ID = :bg_id;
Extract/reporting processes frequently read this table alongside the RBV (row-by-value) views, and integration with payroll or carrier feeds typically filters on CBR_ELIG_PERD_STRT_DT to identify newly qualified beneficiaries in a given period.
Related Objects
- BEN_CBR_PER_IN_LER — the primary child table; joins via BEN_CBR_PER_IN_LER.CBR_QUALD_BNF_ID = BEN_CBR_QUALD_BNF.CBR_QUALD_BNF_ID. It is the main consumer of the primary key.
- BEN_CBR_PER_IN_LER_RBV — row-by-value view referencing CBR_QUALD_BNF_ID, used in Oracle's RBV reporting pattern.
- BEN_CBR_QUALD_BNF_RBV — the row-by-value view of this table itself, exposing the documented columns for reporting.
- HR_ALL_ORGANIZATION_UNITS — parent organization table for the BUSINESS_GROUP_ID foreign key; the join is on ORGANIZATION_ID = BUSINESS_GROUP_ID.
These four objects constitute the documented relationship footprint. Additional BEN COBRA and benefit-enrollment tables may depend on the qualified beneficiary row through PGM_ID, PTIP_ID, or PL_TYP_ID, but those relationships are not enumerated in the ETRM metadata and should be validated against the site's own data model.
-
Table: BEN_CBR_QUALD_BNF
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CBR_QUALD_BNF, object_name:BEN_CBR_QUALD_BNF, status:VALID, product: BEN - Advanced Benefits , description: Participants who have experienced COBRA (US) life event. , implementation_dba_data: BEN.BEN_CBR_QUALD_BNF ,
-
Table: BEN_CBR_QUALD_BNF
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CBR_QUALD_BNF, object_name:BEN_CBR_QUALD_BNF, status:VALID, product: BEN - Advanced Benefits , description: Participants who have experienced COBRA (US) life event. , implementation_dba_data: BEN.BEN_CBR_QUALD_BNF ,
-
VIEW: APPS.BENBV_CBR_QUALD_BNF_V
12.2.2
-
VIEW: APPS.BENBV_CBR_QUALD_BNF_V
12.1.1
-
APPS.BEN_CQB_SHD SQL Statements
12.1.1
-
VIEW: BEN.BEN_CBR_QUALD_BNF#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_CBR_QUALD_BNF#, status:VALID,
-
APPS.BEN_CQB_SHD SQL Statements
12.2.2
-
SYNONYM: APPS.BEN_CBR_QUALD_BNF
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_CBR_QUALD_BNF, status:VALID,
-
SYNONYM: APPS.BEN_CBR_QUALD_BNF
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_CBR_QUALD_BNF, status:VALID,
-
VIEW: BEN.BEN_CBR_QUALD_BNF#
12.2.2
-
Table: BEN_CBR_PER_IN_LER
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CBR_PER_IN_LER, object_name:BEN_CBR_PER_IN_LER, status:VALID, product: BEN - Advanced Benefits , description: Life event which may make participant eligible for COBRA (US) , implementation_dba_data: BEN.BEN_CBR_PER_IN_LER ,
-
Table: BEN_CBR_PER_IN_LER
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CBR_PER_IN_LER, object_name:BEN_CBR_PER_IN_LER, status:VALID, product: BEN - Advanced Benefits , description: Life event which may make participant eligible for COBRA (US) , implementation_dba_data: BEN.BEN_CBR_PER_IN_LER ,
-
TRIGGER: APPS.BEN_CBR_QUALD_BNF_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:BEN_CBR_QUALD_BNF_WHO, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_SHD, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_BUS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_UPD, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_DEL, status:VALID,
-
PACKAGE BODY: APPS.BEN_CRP_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CRP_BUS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_UPD, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_DEL, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_BUS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_SHD, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_INS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CRP_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CRP_BUS, status:VALID,
-
TRIGGER: APPS.BEN_CBR_QUALD_BNF_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BEN_CBR_QUALD_BNF_WHO, status:VALID,
-
PACKAGE BODY: APPS.BEN_CQB_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CQB_INS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CBR_QUALD_BNF_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CBR_QUALD_BNF_API, status:VALID,
-
PACKAGE BODY: APPS.BEN_CBR_QUALD_BNF_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CBR_QUALD_BNF_API, status:VALID,
-
View: BENBV_CBR_QUALD_BNF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CBR_QUALD_BNF_V, object_name:BENBV_CBR_QUALD_BNF_V, status:VALID, product: BEN - Advanced Benefits , description: This view contains information about whether a person has elected to participate in COBRA and the person's COBRA ineligibility date. , implementation_dba_data: APPS.BENBV_CBR_QUALD_BNF_V ,
-
TABLE: BEN.BEN_CBR_QUALD_BNF
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CBR_QUALD_BNF, object_name:BEN_CBR_QUALD_BNF, status:VALID,
-
APPS.BEN_CRP_BUS SQL Statements
12.1.1
-
APPS.BEN_CRP_BUS SQL Statements
12.2.2
-
TRIGGER: APPS.BEN_CBR_QUALD_BNF_WHO
12.1.1
-
PACKAGE BODY: APPS.BEN_POPULATE_RBV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_POPULATE_RBV, status:VALID,
-
PACKAGE BODY: APPS.BEN_POPULATE_RBV
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_POPULATE_RBV, status:VALID,
-
TRIGGER: APPS.BEN_CBR_QUALD_BNF_WHO
12.2.2
-
TABLE: BEN.BEN_CBR_QUALD_BNF
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CBR_QUALD_BNF, object_name:BEN_CBR_QUALD_BNF, status:VALID,
-
PACKAGE BODY: APPS.BEN_DM_DELETE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_DM_DELETE, status:VALID,
-
View: BENBV_CBR_QUALD_BNF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CBR_QUALD_BNF_V, object_name:BENBV_CBR_QUALD_BNF_V, status:VALID, product: BEN - Advanced Benefits , description: This view contains information about whether a person has elected to participate in COBRA and the person's COBRA ineligibility date. , implementation_dba_data: APPS.BENBV_CBR_QUALD_BNF_V ,
-
PACKAGE BODY: APPS.BEN_DM_DELETE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_DM_DELETE, status:VALID,
-
APPS.BEN_CQB_BUS SQL Statements
12.1.1
-
APPS.BEN_CQB_BUS SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BEN_DELETE_ORPHAN_ROWS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_DELETE_ORPHAN_ROWS, status:VALID,
-
PACKAGE BODY: APPS.BEN_DELETE_ORPHAN_ROWS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_DELETE_ORPHAN_ROWS, status:VALID,
-
PACKAGE BODY: APPS.BEN_PERSON_DELETE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_PERSON_DELETE, status:VALID,
-
PACKAGE BODY: APPS.BEN_COBRA_REQUIREMENTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_COBRA_REQUIREMENTS, status:VALID,
-
PACKAGE BODY: APPS.BEN_COBRA_REQUIREMENTS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_COBRA_REQUIREMENTS, status:VALID,
-
PACKAGE BODY: APPS.BEN_PERSON_DELETE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_PERSON_DELETE, status:VALID,
-
APPS.BEN_CQB_DEL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.HR_PUMP_GET
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_PUMP_GET, status:VALID,