Search Results ben_acrs_ptip_cvg_f
Overview
BEN_ACRS_PTIP_CVG_F is a core configuration table within the Oracle Advanced Benefits (BEN) module of Oracle E-Business Suite, available in both release 12.1.1 and 12.2.2. The table stores the definitions of coverages that span multiple plan types within a benefits program. The name decomposes into "ACRS" (Advanced Compensation and Related Setup) and "PTIP" (Plan Type In Program), indicating that the object defines how coverage rules, minimum and maximum allowed amounts, and associated program-level attributes apply across different plan type groupings. In ETRM terms, the table supports the configuration layer that drives plan eligibility and coverage limits presented to participants during enrollment and life event processing.
The documented schema carries 45 columns, with the primary key defined by BEN_ACRS_PTIP_CVG_PK on the composite of ACRS_PTIP_CVG_ID, EFFECTIVE_START_DATE, and EFFECTIVE_END_DATE. This date-effective primary key is characteristic of Oracle HRMS/BEN datetracked configuration objects, ensuring that every coverage definition retains a valid-time history. The heuristic Data Vault classification mined from the FK structure is standalone. In Data Vault modeling terms, this suggests the table behaves more as a reference or standalone configuration entity rather than a strict hub, link, or satellite; however, its date-effective primary key and Business Group scoping mean it can equally be modeled as a satellite attached to a coverage hub where the natural key is ACRS_PTIP_CVG_ID.
Key Information Stored
The most operationally significant columns fall into identity, scoping, and limit categories:
- ACRS_PTIP_CVG_ID — Surrogate identifier for the coverage definition; the first component of the primary key.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — Date-effective range columns that complete the primary key and enforce valid-time versioning.
- BUSINESS_GROUP_ID — Enterprise/legislative scoping key, segregating configuration between business groups.
- NAME — User-facing name of the coverage across plan types.
- MX_CVG_ALWD_AMT / MN_CVG_ALWD_AMT — Maximum and minimum coverage allowed amounts, the most important functional payload of the table.
- PGM_ID — Foreign reference to the benefits program within which this coverage is defined.
- APC_ATTRIBUTE_CATEGORY and APC_ATTRIBUTE1 through APC_ATTRIBUTE30 — Descriptive flexfield (DFF) columns providing the standard 30-segment extensibility Oracle reserves for client-specific coverage attributes.
- OBJECT_VERSION_NUMBER — Optimistic locking column used by the OAF/BC4J middle tier.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE — Standard WHO audit columns.
The unique index BEN_ACRS_PTIP_CVG_PK is the business-key candidate; no additional unique indexes are documented, so ACRS_PTIP_CVG_ID together with the effective dates is the only guaranteed-unique tuple.
Common Use Cases and Queries
Typical uses include validating maximum and minimum coverage limits per program during enrollment, auditing configuration changes over time, and reporting coverage structures across plan types. A common pattern retrieves the currently effective coverage rows for a program:
- SELECT acrs_ptip_cvg_id, name, mn_cvg_alwd_amt, mx_cvg_alwd_amt FROM ben_acrs_ptip_cvg_f WHERE pgm_id = :pgm_id AND business_group_id = :bg_id AND TRUNC(SYSDATE) BETWEEN effective_start_date AND effective_end_date;
- Historical (as-of) query using a bind date instead of SYSDATE to reconstruct coverage limits at a prior point in time.
- Joining to program and plan-type setup tables to flatten coverage-to-plan-type mappings for a BI Publisher or OBIEE report.
- Audit queries filtering on LAST_UPDATE_DATE and LAST_UPDATED_BY to trace configuration drift.
Because the table is date-effective, all queries must supply an effective-date predicate to avoid returning multiple versions of the same ACRS_PTIP_CVG_ID.
Related Objects
The metadata classifies the object as standalone, meaning no outbound foreign keys are formally documented in the FK structure. Functionally, however, the following objects are the most significant collaborators:
- BEN_PGM_F — Benefits program definition; joined on PGM_ID.
- BEN_PTIP_F — Plan type in program definition, the logical parent of the "PTIP" coverage concept.
- BEN_PL_TYP_F — Plan type definitions referenced when coverages span plan types.
- BEN_ACRS_PTIP_CVG_R — the route/relationship variant of this configuration used by the enrollment engine.
- BEN_BENEFIT_ACTION — enrollment actions that consume coverage limits at runtime.
- FND_FLEX_VALUES — validates APC_ATTRIBUTE flexible field values.
- HR_ALL_ORGANIZATION_UNITS — resolved through BUSINESS_GROUP_ID for legal-entity scoping.
These join paths should be validated against the live 12.2.2 schema, since ETRM does not document formal FK constraints for this table.
-
Table: BEN_ACRS_PTIP_CVG_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_F, object_name:BEN_ACRS_PTIP_CVG_F, status:VALID, product: BEN - Advanced Benefits , description: Coverages across plan types in programs. , implementation_dba_data: BEN.BEN_ACRS_PTIP_CVG_F ,
-
Table: BEN_ACRS_PTIP_CVG_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_F, object_name:BEN_ACRS_PTIP_CVG_F, status:VALID, product: BEN - Advanced Benefits , description: Coverages across plan types in programs. , implementation_dba_data: BEN.BEN_ACRS_PTIP_CVG_F ,
-
VIEW: APPS.BEN_ACRS_PTIP_CVG_D
12.1.1
-
VIEW: APPS.BEN_ACRS_PTIP_CVG_D
12.2.2
-
VIEW: BEN.BEN_ACRS_PTIP_CVG_F#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_ACRS_PTIP_CVG_F#, status:VALID,
-
APPS.BEN_APC_SHD SQL Statements
12.2.2
-
APPS.BEN_APC_SHD SQL Statements
12.1.1
-
SYNONYM: APPS.BEN_ACRS_PTIP_CVG_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_ACRS_PTIP_CVG_F, status:VALID,
-
SYNONYM: APPS.BEN_ACRS_PTIP_CVG_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_ACRS_PTIP_CVG_F, status:VALID,
-
VIEW: APPS.BEN_ACRS_PTIP_CVG_X
12.2.2
-
VIEW: APPS.BEN_ACRS_PTIP_CVG_V
12.2.2
-
VIEW: APPS.BEN_ACRS_PTIP_CVG
12.2.2
-
VIEW: APPS.BEN_ACRS_PTIP_CVG_V
12.1.1
-
VIEW: APPS.BEN_ACRS_PTIP_CVG_X
12.1.1
-
VIEW: APPS.BEN_ACRS_PTIP_CVG
12.1.1
-
VIEW: BEN.BEN_ACRS_PTIP_CVG_F#
12.2.2
-
View: BEN_ACRS_PTIP_CVG_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_D, object_name:BEN_ACRS_PTIP_CVG_D, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted - Retrofitted , implementation_dba_data: APPS.BEN_ACRS_PTIP_CVG_D ,
-
PACKAGE BODY: APPS.BEN_APC_SHD
12.1.1
-
PACKAGE BODY: APPS.BEN_APC_SHD
12.2.2
-
View: BEN_ACRS_PTIP_CVG_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_D, object_name:BEN_ACRS_PTIP_CVG_D, status:VALID, product: BEN - Advanced Benefits , description: - Retrofitted - Retrofitted , implementation_dba_data: APPS.BEN_ACRS_PTIP_CVG_D ,
-
TRIGGER: APPS.BEN_ACRS_PTIP_CVG_F_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:BEN_ACRS_PTIP_CVG_F_WHO, status:VALID,
-
TRIGGER: APPS.BEN_ACRS_PTIP_CVG_F_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:BEN_ACRS_PTIP_CVG_F_WHO, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_SHD, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_DEL, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_SHD, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_INS, status:VALID,
-
TABLE: BEN.BEN_ACRS_PTIP_CVG_F
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_F, object_name:BEN_ACRS_PTIP_CVG_F, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_DEL, status:VALID,
-
TABLE: BEN.BEN_ACRS_PTIP_CVG_F
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_F, object_name:BEN_ACRS_PTIP_CVG_F, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_BUS, status:VALID,
-
TRIGGER: APPS.BEN_ACRS_PTIP_CVG_F_WHO
12.2.2
-
PACKAGE BODY: APPS.BEN_APC_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_BUS, status:VALID,
-
PACKAGE BODY: APPS.BEN_ACRS_PTIP_CVG_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_ACRS_PTIP_CVG_API, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_INS, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_UPD, status:VALID,
-
TRIGGER: APPS.BEN_ACRS_PTIP_CVG_F_WHO
12.1.1
-
PACKAGE BODY: APPS.BEN_ACRS_PTIP_CVG_API
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_ACRS_PTIP_CVG_API, status:VALID,
-
PACKAGE BODY: APPS.BEN_APC_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BEN_APC_UPD, status:VALID,
-
APPS.BEN_APC_DEL SQL Statements
12.2.2
-
View: BEN_ACRS_PTIP_CVG_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_X, object_name:BEN_ACRS_PTIP_CVG_X, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ACRS_PTIP_CVG_X ,
-
View: BEN_ACRS_PTIP_CVG_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_X, object_name:BEN_ACRS_PTIP_CVG_X, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ACRS_PTIP_CVG_X ,
-
APPS.BEN_APC_DEL SQL Statements
12.1.1
-
View: BEN_ACRS_PTIP_CVG
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG, object_name:BEN_ACRS_PTIP_CVG, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ACRS_PTIP_CVG ,
-
View: BEN_ACRS_PTIP_CVG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_V, object_name:BEN_ACRS_PTIP_CVG_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ACRS_PTIP_CVG_V ,
-
View: BEN_ACRS_PTIP_CVG
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG, object_name:BEN_ACRS_PTIP_CVG, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ACRS_PTIP_CVG ,
-
View: BEN_ACRS_PTIP_CVG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_V, object_name:BEN_ACRS_PTIP_CVG_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_ACRS_PTIP_CVG_V ,
-
VIEW: APPS.BEN_ACRS_PTIP_CVG_D
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_D, object_name:BEN_ACRS_PTIP_CVG_D, status:VALID,
-
VIEW: APPS.BEN_ACRS_PTIP_CVG_D
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_ACRS_PTIP_CVG_D, object_name:BEN_ACRS_PTIP_CVG_D, status:VALID,
-
APPS.BEN_APC_INS SQL Statements
12.2.2
-
APPS.BEN_APC_INS SQL Statements
12.1.1