C_CellCommentMentionedUserVH

DDL: C_CELLCOMMENTMENTIONEDUSERVH Type: view_entity CONSUMPTION Package: RSANAR_CELL_COMMENT

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)

SourceAliasJoin Type
P_CellCommentMentionedUser _CommentAuthorizedUser from
P_MentionedUserDetails _MentionedUserDetail inner
P_CellCommentNotifActnSetting _NotifSetting left_outer

Annotations (6)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
UI_CELLCOMMENT UI_CELLCOMMENT V4 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY UserID P_MentionedUserDetails UserID
PersonFullName P_MentionedUserDetails PersonFullName
Email P_MentionedUserDetails Email
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
}