Search Results benbv_per_cm_prvdd_v
Overview
The BENBV_PER_CM_PRVDD_V view is a business-facing database object in the Oracle E-Business Suite Advanced Benefits (BEN) module. Owned by the APPS schema and documented as VALID, it exposes a secured, read-only projection of communications activity for persons who have a life event in progress. Specifically, the view identifies two categories of correspondence: communications that must be provided to a participant with an active life event, and communications that have been requested by that participant.
In the Oracle EBS 12.1.1 and 12.2.2 release streams, BENBV_* views serve as the reporting and integration surface over the BEN tables and their _F (date-tracked) counterparts. This view is therefore typically consumed by concurrent reports, OAF-based self-service pages, XML Publisher extracts, and custom integrations that need to reconcile which life-event communications were triggered, dispatched, or requested. Because it is defined WITH READ ONLY, it is intended exclusively for retrieval rather than DML.
Underlying Base Objects
The view text reveals that BENBV_PER_CM_PRVDD_V is defined over two documented referenced objects: the synonym BEN_PER_CM_PRVDD_F and the package HR_BIS. The primary data source is BEN_PER_CM_PRVDD_F, the date-tracked ("_F") table that stores per-person communication provided records, keyed by PER_CM_PRVDD_ID and PER_CM_ID. The view aliases this table as PCD and applies a security predicate restricting rows to NVL(HR_BIS.GET_SEC_PROFILE_BG_ID, PCD.BUSINESS_GROUP_ID), so callers see only data for the business group returned by their security profile.
HR_BIS is an HR utility package invoked through the BIS_DECODE_LOOKUP function to translate stored code values into their lookup meanings. It is also the source of the GET_SEC_PROFILE_BG_ID security profile function used in the WHERE clause. A descriptive flexfield reference ('_DF:BEN:BEN_PER_CM_PRVDD_F:PCD') is also projected for context-sensitive flexfield reporting.
Key Columns
The view exposes date-effective and lifecycle attributes, decoded meanings, and surrogate keys:
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — Date-tracked validity range of the communication record.
- SENT_DT / TO_BE_SENT_DT — Actual and scheduled send dates, supporting correspondence status reporting.
- INSTNC_NUM / DLVRY_INSTN_TXT — Delivery instance identifiers and instructions.
- PER_CM_PRVDD_STAT_CD / _M — Communication provided status code and its decoded meaning via BEN_PER_CM_PRVDD_STAT.
- CM_DLVRY_MED_CD / _M and CM_DLVRY_MTHD_CD / _M — Delivery medium and method, decoded through BEN_DLVRY_MED and BEN_DLVRY_MTHD.
- RQSTD_FLAG / _M — Indicates whether the communication was requested by the person (decoded YES_NO), which is central to the view's documented purpose.
- INSPN_RQD_FLAG / _M and RESND_RSN_CD / _M — Inspection-required and resend-reason indicators.
- PER_CM_PRVDD_ID, PER_CM_ID, ADDRESS_ID, BUSINESS_GROUP_ID — Identifier columns for joins and filtering.
- REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE — Concurrent program traceability columns for audit and error investigation.
- WHO columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) — Standard audit attributes.
Common Use Cases and Queries
Typical scenarios include auditing life-event correspondence, confirming which communications were requested versus mandated, and feeding downstream notification or compliance extracts. A representative query filtering to requested communications for a person's life event follows:
SELECT PER_CM_PRVDD_ID, PER_CM_ID, PER_CM_PRVDD_STAT_CD_M, CM_DLVRY_MED_CD_M, SENT_DT, TO_BE_SENT_DT, RQSTD_FLAG_M FROM APPS.BENBV_PER_CM_PRVDD_V WHERE RQSTD_FLAG = 'Y';SELECT PER_CM_PRVDD_ID, PER_CM_PRVDD_STAT_CD_M, RESND_RSN_CD_M FROM APPS.BENBV_PER_CM_PRVDD_V WHERE TRUNC(SENT_DT) >= :p_from_date;
Because the view applies the business-group security predicate automatically, queries executed under a valid BEN responsibility return only the current user's authorized business group, eliminating the need for manual BUSINESS_GROUP_ID filtering in most reporting contexts.
-
View: BENBV_PER_CM_PRVDD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PER_CM_PRVDD_V, object_name:BENBV_PER_CM_PRVDD_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the communications that must be provided to a person who has a life event in progress and the communications that have been requested by that person. , implementation_dba_data: APPS.BENBV_PER_CM_PRVDD_V ,
-
View: BENBV_PER_CM_PRVDD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PER_CM_PRVDD_V, object_name:BENBV_PER_CM_PRVDD_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the communications that must be provided to a person who has a life event in progress and the communications that have been requested by that person. , implementation_dba_data: APPS.BENBV_PER_CM_PRVDD_V ,
-
SYNONYM: PUBLIC.BENBV_PER_CM_PRVDD_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:BENBV_PER_CM_PRVDD_V, status:VALID,
-
SYNONYM: APPS.BEN_PER_CM_PRVDD_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_PER_CM_PRVDD_F, status:VALID,
-
SYNONYM: APPS.BEN_PER_CM_PRVDD_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_PER_CM_PRVDD_F, status:VALID,
-
VIEW: APPS.BENBV_PER_CM_PRVDD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PER_CM_PRVDD_V, object_name:BENBV_PER_CM_PRVDD_V, status:VALID,
-
VIEW: APPS.BENBV_PER_CM_PRVDD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_PER_CM_PRVDD_V, object_name:BENBV_PER_CM_PRVDD_V, status:VALID,
-
PACKAGE: APPS.HR_BIS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_BIS, status:VALID,
-
PACKAGE: APPS.HR_BIS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_BIS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - BEN Tables and Views
12.1.1
description: Start and End periods. ,
-
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. ,
-
eTRM - BEN Tables and Views
12.2.2
description: Start and End periods. ,