Search Results ben_cmbn_plip_f
Overview
BEN_CMBN_PLIP_F is a table in the BEN schema (Oracle Advanced Benefits) in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the definition of combinations of plans within a program that may provide credits to enrolling participants. In other words, when a participant enrolls in a specific set of plans offered by a program, the combination defined in this table can trigger a credit — typically a flex credit or similar benefit credit — that is applied to the participant's enrollment.
The table carries the standard EBS effective-dating columns (EFFECTIVE_START_DATE, EFFECTIVE_END_DATE) and the standard WHO/audit columns (LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE, OBJECT_VERSION_NUMBER), indicating that it is a date-tracked, non-transactional setup/definition entity rather than a transactional record. The documented primary key BEN_CMBN_PLIP_F_PK is composed of CMBN_PLIP_ID, EFFECTIVE_START_DATE, and EFFECTIVE_END_DATE, so the same combination identifier can have multiple effective-dated versions. Under the heuristic Data Vault classification provided in the metadata, this object is a standalone — that is, it is modeled as a hub-like standalone definition table with no mined foreign-key links to other hubs from its FK structure, and its business attributes behave like satellite data over the effective-dated key. This classification should be treated as a modeling suggestion rather than a strict dependency statement.
Key Information Stored
The table contains 43 documented columns. The most significant of the documented columns are the following:
- CMBN_PLIP_ID — the primary identifier for a plan-in-program combination. It is part of the composite primary key and is the surrogate key used to reference a combination from dependent configuration.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — the effective-dating pair. Together with CMBN_PLIP_ID, they form the primary key and the unique business-key candidate recorded in BEN_CMBN_PLIP_F_PK.
- BUSINESS_GROUP_ID — the HR business group (legislative/operating unit) that owns the combination definition, providing the multi-tenant scoping used across BEN configuration tables.
- PGM_ID — the identifier of the program in which the plan combination is defined. This ties the combination to a specific benefit program.
- NAME — the user-visible name of the combination, used for identification and reporting.
- CPL_ATTRIBUTE_CATEGORY — the descriptive flexfield context category for the combination-of-plans (CPL) attribute group.
- CPL_ATTRIBUTE1 … CPL_ATTRIBUTE30 — the 30 attribute columns belonging to the CPL descriptive flexfield. These are customer-defined and are typically used to store additional combination-level information required for credit rules or integration.
- OBJECT_VERSION_NUMBER — the optimistic-locking version, incremented on each update, used by the BEN forms and APIs to prevent lost updates.
- LAST_UPDATE_DATE / LAST_UPDATED_BY / LAST_UPDATE_LOGIN / CREATED_BY / CREATION_DATE — standard audit and WHO columns maintained by the EBS framework and used in reporting and data reconciliation.
The primary key is the surrogate combination of CMBN_PLIP_ID, EFFECTIVE_START_DATE, and EFFECTIVE_END_DATE. The unique index BEN_CMBN_PLIP_F_PK is the documented business-key candidate; because the object is classified as standalone, no additional foreign-key-derived business keys are asserted in the metadata.
Common Use Cases and Queries
This table is primarily consumed by benefit program configuration and reporting. Typical scenarios include:
- Enrolling credit determination. During enrollment processing, the combination of plans a participant elects is matched against the effective-dated combinations defined here to determine whether a credit applies.
- Configuration review and auditing. Functional analysts list all combinations for a given program to confirm credit-eligible plan groupings and their effective dates.
- Descriptive flexfield reporting. The CPL_ATTRIBUTE columns are frequently surfaced in client-specific reports and extracts.
A representative query retrieving the currently effective combinations for a program is:
SELECT cmbn_plip_id, name, pgm_id, effective_start_date, effective_end_dateFROM ben.ben_cmbn_plip_fWHERE pgm_id = :p_pgm_idAND business_group_id = :p_business_group_idAND TRUNC(SYSDATE) BETWEEN effective_start_date AND effective_end_date;
Because the table is effective-dated, any query intended for "current" data must always apply the date predicate; omitting it returns every historical and future version of each combination. For data warehousing, the table is normally extracted with its effective dates intact so that slowly changing dimensions can be built over the combination key.
Related Objects
The documented metadata classifies BEN_CMBN_PLIP_F as standalone, with the only indexed relationship being the primary key BEN_CMBN_PLIP_F_PK. Consistent with that classification, the following are the most significant related objects and the join columns typically used:
- BEN_PGM_F — the benefit program definition; joined via PGM_ID (and BUSINESS_GROUP_ID) to identify the program that owns the combination.
- BEN_PL_F — the plan definition; plan-in-program combinations ultimately reference the plans offered through the program, joined through the program/plan association.
- BEN_PGM_PL_F — the program-to-plan association; used to resolve which plans belong to the program referenced by PGM_ID.
- BEN_CMBN_PLIP_RL — the association table linking a combination to the specific plan-in-program entries that make up the combination.
- BEN_ELIG_CREDIT_F and the credit/flex-credit definition tables — the credit objects whose applicability is driven by the plan combinations defined here.
- BEN_CMBN_PLIP_F_PK — the unique index enforcing the composite key and serving as the business-key candidate for the object.
- BEN_CPL_DF / BEN descriptive flexfield metadata — the flexfield definitions that give meaning to CPL_ATTRIBUTE_CATEGORY and CPL_ATTRIBUTE1 through CPL_ATTRIBUTE30.
- HR_ALL_ORGANIZATION_UNITS — joined via BUSINESS_GROUP_ID where the business group organization must be resolved for reporting.
These relationships should be validated against the specific configuration in the target instance, since the documented metadata does not assert formal foreign keys for this standalone object.
-
Table: BEN_CMBN_PLIP_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CMBN_PLIP_F, object_name:BEN_CMBN_PLIP_F, status:VALID, product: BEN - Advanced Benefits , description: Combination of plans in programs that may provide credits to enrolling participants. , implementation_dba_data: BEN.BEN_CMBN_PLIP_F ,
-
Table: BEN_CMBN_PLIP_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CMBN_PLIP_F, object_name:BEN_CMBN_PLIP_F, status:VALID, product: BEN - Advanced Benefits , description: Combination of plans in programs that may provide credits to enrolling participants. , implementation_dba_data: BEN.BEN_CMBN_PLIP_F ,
-
VIEW: APPS.BEN_CMBN_PLIP_F_DFV
12.2.2
-
APPS.BEN_CPL_SHD SQL Statements
12.2.2
-
VIEW: APPS.BEN_CMBN_PLIP_F_DFV
12.1.1
-
VIEW: APPS.BEN_CMBN_PLIP_D
12.1.1
-
APPS.BEN_CPL_SHD SQL Statements
12.1.1
-
VIEW: APPS.BEN_CMBN_PLIP_D
12.2.2
-
VIEW: APPS.BEN_CMBN_PLIP_X
12.1.1
-
VIEW: BEN.BEN_CMBN_PLIP_F#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_CMBN_PLIP_F#, status:VALID,
-
SYNONYM: APPS.BEN_CMBN_PLIP_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_CMBN_PLIP_F, status:VALID,
-
SYNONYM: APPS.BEN_CMBN_PLIP_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_CMBN_PLIP_F, status:VALID,
-
VIEW: APPS.BEN_CMBN_PLIP_V
12.1.1
-
VIEW: APPS.BEN_CMBN_PLIP_X
12.2.2
-
VIEW: APPS.BEN_CMBN_PLIP
12.1.1
-
VIEW: APPS.BEN_CMBN_PLIP_V
12.2.2
-
VIEW: APPS.BEN_CMBN_PLIP
12.2.2
-
VIEW: BEN.BEN_CMBN_PLIP_F#
12.2.2
-
PACKAGE BODY: APPS.BEN_CPL_SHD
12.2.2
-
VIEW: APPS.BEN_FLX_ENRT_POOL_INFO_V
12.2.2
-
View: BEN_CMBN_PLIP_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CMBN_PLIP_D, object_name:BEN_CMBN_PLIP_D, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_CMBN_PLIP_D ,
-
View: BEN_CMBN_PLIP_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CMBN_PLIP_D, object_name:BEN_CMBN_PLIP_D, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_CMBN_PLIP_D ,
-
View: BEN_FLX_ENRT_POOL_LE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_FLX_ENRT_POOL_LE_V, object_name:BEN_FLX_ENRT_POOL_LE_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_FLX_ENRT_POOL_LE_V ,
-
TRIGGER: APPS.BEN_CMBN_PLIP_F_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:BEN_CMBN_PLIP_F_WHO, status:VALID,
-
TRIGGER: APPS.BEN_CMBN_PLIP_F_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BEN_CMBN_PLIP_F_WHO, status:VALID,
-
PACKAGE BODY: APPS.BEN_CPL_SHD
12.1.1
-
VIEW: APPS.BEN_FLX_ENRT_POOL_LE_V
12.2.2
-
VIEW: APPS.BEN_FLX_ENRT_POOL_LE_V
12.1.1
-
VIEW: APPS.BEN_FLX_ENRT_POOL_INFO_V
12.1.1
-
PACKAGE BODY: APPS.BEN_CPL_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CPL_SHD, status:VALID,
-
PACKAGE BODY: APPS.BEN_CPL_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CPL_SHD, status:VALID,
-
PACKAGE BODY: APPS.BEN_BIS_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_BIS_UTILS, status:VALID,
-
VIEW: APPS.BEN_CMBN_PLIP_F_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:BEN_CMBN_PLIP_F_DFV, status:VALID,
-
View: BEN_FLX_ENRT_POOL_LE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_FLX_ENRT_POOL_LE_V, object_name:BEN_FLX_ENRT_POOL_LE_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_FLX_ENRT_POOL_LE_V ,
-
PACKAGE BODY: APPS.BEN_EXT_FLCR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_EXT_FLCR, status:VALID,
-
PACKAGE BODY: APPS.BEN_BIS_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_BIS_UTILS, status:VALID,
-
PACKAGE BODY: APPS.BEN_EPE_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_EPE_BUS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CPL_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CPL_UPD, status:VALID,
-
TRIGGER: APPS.BEN_CMBN_PLIP_F_WHO
12.1.1
-
TRIGGER: APPS.BEN_CMBN_PLIP_F_WHO
12.2.2
-
TABLE: BEN.BEN_CMBN_PLIP_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CMBN_PLIP_F, object_name:BEN_CMBN_PLIP_F, status:VALID,
-
TABLE: BEN.BEN_CMBN_PLIP_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CMBN_PLIP_F, object_name:BEN_CMBN_PLIP_F, status:VALID,
-
APPS.BEN_CPL_DEL SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BEN_CPL_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CPL_INS, status:VALID,
-
PACKAGE BODY: APPS.BEN_EPE_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_EPE_BUS, status:VALID,
-
PACKAGE BODY: APPS.BEN_CPL_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CPL_DEL, status:VALID,
-
View: BEN_FLX_ENRT_POOL_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_FLX_ENRT_POOL_INFO_V, object_name:BEN_FLX_ENRT_POOL_INFO_V, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted , implementation_dba_data: APPS.BEN_FLX_ENRT_POOL_INFO_V ,
-
VIEW: APPS.BEN_CMBN_PLIP_F_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:BEN_CMBN_PLIP_F_DFV, status:VALID,
-
PACKAGE BODY: APPS.BEN_CMBN_PLIP_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CMBN_PLIP_API, status:VALID,
-
PACKAGE BODY: APPS.BEN_CMBN_PLIP_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_CMBN_PLIP_API, status:VALID,