C_BillingDocumentUserVH

DDL: C_BILLINGDOCUMENTUSERVH Type: view CONSUMPTION Package: ODATA_SD_BIL_COMMON_UI_V2

Billing Document User Value Help

C_BillingDocumentUserVH is a Consumption CDS View that provides data about "Billing Document User Value Help" 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 ODATA_SD_BIL_COMMON_UI_V2.

Data Sources (1)

SourceAliasJoin Type
I_User User from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BillingDocumentBasic _BillingDocumentBasic $projection.UserID = _BillingDocumentBasic.CreatedByUser

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CBILLDOCUSERVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Billing Document User Value Help view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey UserID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID I_User UserID
UserDescription I_User UserDescription Name
_BillingDocumentBasic _BillingDocumentBasic
@AbapCatalog: {
   sqlViewName: 'CBILLDOCUSERVH',
   compiler.compareFilter: true,
   preserveKey: true
}

@ClientHandling.algorithm: #SESSION_VARIABLE

@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
  
@EndUserText.label: 'Billing Document User Value Help'
@Search.searchable: true

@VDM.viewType: #CONSUMPTION

@ObjectModel: {
   representativeKey: 'UserID',
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #A,
     sizeCategory:   #S
   }
}

@UI.presentationVariant:{
    sortOrder: [
        { by: 'UserID', direction: #ASC },
        { by: 'UserDescription', direction: #ASC }]
}
define view C_BillingDocumentUserVH
  as select from I_User as User
     
     association [0..*] to I_BillingDocumentBasic as _BillingDocumentBasic on $projection.UserID = _BillingDocumentBasic.CreatedByUser
{      
      @ObjectModel.text.element:  [ 'UserDescription' ]
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.9
      @Search.ranking: #HIGH
  key User.UserID,
  
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.9
      @EndUserText.label: 'Name'
      User.UserDescription,
      
  _BillingDocumentBasic      
}