C_PPS_UserVH

DDL: C_PPS_USERVH Type: view_entity CONSUMPTION

User Master Help

C_PPS_UserVH is a Consumption CDS View that provides data about "User Master Help" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 4 fields with key field UserID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_User _User from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_UserContactCard _UserContactCard _UserContactCard.ContactCardID = $projection.UserID

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label User Master Help view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
Consumption.ranked true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey UserID view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User
PersonFullName _UserContactCard FullName Description
FirstName _UserContactCard FirstName
LastName _UserContactCard LastName
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'User Master Help'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #M
}
@Search.searchable: true
@ObjectModel.semanticKey: ['UserID']
@ObjectModel.dataCategory:#VALUE_HELP
@ObjectModel.usageType.dataClass: #MASTER
@Consumption.ranked:true
@VDM.viewType: #CONSUMPTION
@ObjectModel.representativeKey: 'UserID'

define view entity C_PPS_UserVH
  as select from I_User as _User
  association [0..1] to I_UserContactCard as _UserContactCard on _UserContactCard.ContactCardID = $projection.UserID
{
        @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH }
        @EndUserText.label: 'User'
  key   UserID,

        @Semantics.text: true
        @EndUserText.label: 'Description'
        _UserContactCard.FullName as PersonFullName,

        @UI.hidden: true
        @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #MEDIUM }
        _UserContactCard.FirstName,


        @UI.hidden: true
        @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
        _UserContactCard.LastName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER",
"I_USERCONTACTCARD"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/