I_MatlDocUserVH

DDL: I_MATLDOCUSERVH SQL: IMATLDOCUSERVH Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Associations (1)

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

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IMATLDOCUSERVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE 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
@AbapCatalog.sqlViewName: 'IMATLDOCUSERVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl:{
    authorizationCheck: #CHECK,
    personalData:{
        blocking:#NOT_REQUIRED
        }
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@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 I_MatlDocUserVH 
as select from I_User  //nsdm_d_mtdcsa

    association [0..*] to I_MaterialDocumentRecord as _MaterialDocument on 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
}           
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER"
],
"ASSOCIATED":
[
"I_MATERIALDOCUMENTRECORD"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/