C_CellCommentMentionedUserVH
Analytical Cell CMT Mentioned User VH
C_CellCommentMentionedUserVH is a Consumption CDS View that provides data about "Analytical Cell CMT Mentioned User VH" in SAP S/4HANA. It reads from 3 data sources (P_CellCommentMentionedUser, P_MentionedUserDetails, P_CellCommentNotifActnSetting) and exposes 4 fields with key field UserID. It is exposed through 1 OData service (UI_CELLCOMMENT). Part of development package RSANAR_CELL_COMMENT.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| P_CellCommentMentionedUser | _CommentAuthorizedUser | from |
| P_MentionedUserDetails | _MentionedUserDetail | inner |
| P_CellCommentNotifActnSetting | _NotifSetting | left_outer |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Analytical Cell CMT Mentioned User VH | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #CONSUMPTION | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_CELLCOMMENT | UI_CELLCOMMENT | V4 | C1 | NOT_RELEASED |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UserID | P_MentionedUserDetails | UserID | |
| PersonFullName | P_MentionedUserDetails | PersonFullName | ||
| P_MentionedUserDetails | ||||
| DontDeliverNotification | P_CellCommentNotifActnSetting | DontDeliverNotification |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Analytical Cell CMT Mentioned User VH'
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #CONSUMPTION
define view entity C_CellCommentMentionedUserVH
as select from P_CellCommentMentionedUser as _CommentAuthorizedUser
inner join P_MentionedUserDetails as _MentionedUserDetail on _MentionedUserDetail.UserID = _CommentAuthorizedUser.UserID
left outer join P_CellCommentNotifActnSetting as _NotifSetting on _NotifSetting.NotificationRecipientId = _CommentAuthorizedUser.UserID
{
key _MentionedUserDetail.UserID,
_MentionedUserDetail.PersonFullName,
_MentionedUserDetail.Email,
_NotifSetting.DontDeliverNotification
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA