C_EHSSystemUserValueHelp

DDL: C_EHSSYSTEMUSERVALUEHELP Type: view_entity CONSUMPTION Package: EHHSS_CNS_INVESTIGATION

System user in EHS

C_EHSSystemUserValueHelp is a Consumption CDS View that provides data about "System user in EHS" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 3 fields with key field UserID. It has 1 association to related views. Part of development package EHHSS_CNS_INVESTIGATION.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EHSInvestigation _Investigation I_User.UserID = _Investigation.CreatedByUser or I_User.UserID = _Investigation.LastChangedByUser

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label System user in EHS view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UserID view
UI.headerInfo.typeName User view
UI.headerInfo.typeNamePlural Users view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID
UserDescription UserDescription
_Investigation _Investigation
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@EndUserText.label: 'System user in EHS'
@VDM: {
  viewType: #CONSUMPTION
}
@ObjectModel:{
  usageType:{
    dataClass: #TRANSACTIONAL,
    serviceQuality: #A,
    sizeCategory: #S
  },
  dataCategory:#VALUE_HELP,
  representativeKey:'UserID'
}
@UI.headerInfo:{
  typeName:       'User',
  typeNamePlural: 'Users'
}
define view entity C_EHSSystemUserValueHelp
  as select from I_User
  association [0..*] to I_EHSInvestigation as _Investigation on I_User.UserID = _Investigation.CreatedByUser
                                                             or I_User.UserID = _Investigation.LastChangedByUser
{

      @ObjectModel.text.element:  [ 'UserDescription' ]
  key UserID,
      @Semantics.text: true
      UserDescription,


      _Investigation

}