Search Results benbv_cm_dlvry_mthd_typ_v
Overview
BENBV_CM_DLVRY_MTHD_TYP_V is a read-only descriptive flexfield (DFF) view owned by the APPS schema in Oracle E-Business Suite, delivered with the Advanced Benefits (BEN) product family. It exposes the delivery mechanisms that may be used to transmit compensation-related communications, such as e-mail, voicemail, postal service, and fax. The view is a business-group-secured, presentation-layer object rather than a physical table; it joins the underlying delivery method type entity to Oracle's descriptive flexfield and lookup-decoding infrastructure so that concurrent programs, OAF pages, and ad hoc reports can present user-friendly values instead of raw codes.
Because the view is created WITH READ ONLY, it cannot be used for DML. Its primary role is reporting, integration, and LOV (list of values) population for compensation communication setup. A leading _DF:BEN:BEN_CM_DLVRY_MTHD_TYP:CMT pseudo-column signals to the Oracle Forms and OAF descriptive flexfield framework that the row source participates in a DFF definition, allowing the application to resolve flexfield segments dynamically.
Underlying Base Objects
The view is defined over two documented referenced objects:
- BEN_CM_DLVRY_MTHD_TYP (synonym) — The base table holding one row per delivery method type definition, including the short code, default flag, required flag, business group, and the parent compensation type (
CM_TYP_ID). - HR_BIS (package) — The Human Resources Business Intelligence/decoding package. It supplies
BIS_DECODE_LOOKUPfor translating lookup codes into display meanings andGET_SEC_PROFILE_BG_IDfor enforcing business-group security.
The WHERE clause restricts rows to NVL(HR_BIS.GET_SEC_PROFILE_BG_ID, CMT.BUSINESS_GROUP_ID), so a session sees only delivery mechanisms belonging to its secured business group; users without a security profile restriction see all business groups.
Key Columns
- "_DF:CMT" — Descriptive flexfield descriptor token used by the DFF framework.
- CM_DLVRY_MTHD_TYP_CD — The code identifying the delivery mechanism; CM_DLVRY_MTHD_TYP_CD_M is its decoded meaning from the
BEN_DLVRY_MTHDlookup. - DFLT_FLAG / DFLT_FLAG_M — Indicates whether the mechanism is the default for its compensation type; the _M column decodes it via the
YES_NOlookup. - RQD_FLAG / RQD_FLAG_M — Indicates whether the mechanism is required; decoded as Yes/No.
- CM_DLVRY_MTHD_TYP_ID — Primary key surrogate for the delivery method type.
- BUSINESS_GROUP_ID — Owning business group, driving row-level security.
- CM_TYP_ID — Foreign key to the compensation type to which the delivery method belongs.
- WHO columns — CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY for audit traceability.
Common Use Cases and Queries
Typical scenarios include listing the communication channels configured for a compensation type, building LOVs for compensation communication setup, and auditing default or required delivery mechanisms per business group.
Basic listing:
SELECT CM_DLVRY_MTHD_TYP_CD_M, DFLT_FLAG_M, RQD_FLAG_M
FROM APPS.BENBV_CM_DLVRY_MTHD_TYP_V
ORDER BY CM_DLVRY_MTHD_TYP_CD_M;
Filtering by parent compensation type:
SELECT CM_DLVRY_MTHD_TYP_ID, CM_DLVRY_MTHD_TYP_CD_M
FROM APPS.BENBV_CM_DLVRY_MTHD_TYP_V
WHERE CM_TYP_ID = :p_cm_typ_id;
Auditing required mechanisms:
SELECT CM_DLVRY_MTHD_TYP_CD_M, DFLT_FLAG_M
FROM APPS.BENBV_CM_DLVRY_MTHD_TYP_V
WHERE RQD_FLAG = 'Y';
Because the object is a secured read-only view, integrations should query it directly rather than targeting the base table, ensuring business-group security and decoded meanings are consistently applied across 12.1.1 and 12.2.2 environments.
-
View: BENBV_CM_DLVRY_MTHD_TYP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CM_DLVRY_MTHD_TYP_V, object_name:BENBV_CM_DLVRY_MTHD_TYP_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the delivery mechanisms available to transmit compensation-related communications, for example, e-mail, voicemail, postal service and fax. , implementation_dba_data: APPS.BENBV_CM_DLVRY_MTHD_TYP_V ,
-
View: BENBV_CM_DLVRY_MTHD_TYP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CM_DLVRY_MTHD_TYP_V, object_name:BENBV_CM_DLVRY_MTHD_TYP_V, status:VALID, product: BEN - Advanced Benefits , description: This view identifies the delivery mechanisms available to transmit compensation-related communications, for example, e-mail, voicemail, postal service and fax. , implementation_dba_data: APPS.BENBV_CM_DLVRY_MTHD_TYP_V ,
-
SYNONYM: PUBLIC.BENBV_CM_DLVRY_MTHD_TYP_V
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:BENBV_CM_DLVRY_MTHD_TYP_V, status:VALID,
-
SYNONYM: APPS.BEN_CM_DLVRY_MTHD_TYP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BEN_CM_DLVRY_MTHD_TYP, status:VALID,
-
VIEW: APPS.BENBV_CM_DLVRY_MTHD_TYP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CM_DLVRY_MTHD_TYP_V, object_name:BENBV_CM_DLVRY_MTHD_TYP_V, status:VALID,
-
SYNONYM: APPS.BEN_CM_DLVRY_MTHD_TYP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BEN_CM_DLVRY_MTHD_TYP, status:VALID,
-
VIEW: APPS.BENBV_CM_DLVRY_MTHD_TYP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CM_DLVRY_MTHD_TYP_V, object_name:BENBV_CM_DLVRY_MTHD_TYP_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. ,