I_MatlDocUserVH

DDL: I_MATLDOCUSERVH Type: view_entity BASIC Package: MM_IM_VDM_VALUE_HELP

Invtry Management postings on user

I_MatlDocUserVH is a Basic CDS View that provides data about "Invtry Management postings on user" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 3 fields with key field CreatedByUser. It has 1 association to related views. Part of development package MM_IM_VDM_VALUE_HELP.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialDocumentRecord _MaterialDocument I_User.UserID = _MaterialDocument.CreatedByUser

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Invtry Management postings on user view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
VDM.private false view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CreatedByUser UserID Created By
UserDescription UserDescription
_MaterialDocument _MaterialDocument
@AccessControl:{
    authorizationCheck: #CHECK,
    personalData:{
        blocking:#NOT_REQUIRED
        }
}
@EndUserText.label: 'Invtry Management postings on user'

@ObjectModel: {
    usageType: {
        sizeCategory: #L,
        serviceQuality: #C,
        dataClass:#MIXED
    },
    dataCategory: #VALUE_HELP
}

@VDM:{
    private:false,
    viewType: #BASIC,
    lifecycle.contract.type: #SAP_INTERNAL_API
}
@Search.searchable: true
@Consumption.ranked: true
define view entity I_MatlDocUserVH 
as select from I_User  //nsdm_d_mtdcsa

    association [0..*] to I_MaterialDocumentRecord as _MaterialDocument on I_User.UserID = _MaterialDocument.CreatedByUser 
  
{
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #HIGH } 
      @EndUserText.label: 'Created By'
  key UserID as  CreatedByUser,
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW } 
      UserDescription,
      @UI.hidden: true
      _MaterialDocument
}