I_PrepaymentAgrmtUserNameVH

DDL: I_PREPAYMENTAGRMTUSERNAMEVH SQL: IPPMGUSRVH Type: view BASIC

Prepayment Agrmt User Name VH

I_PrepaymentAgrmtUserNameVH is a Basic CDS View that provides data about "Prepayment Agrmt User Name VH" in SAP S/4HANA. It reads from 2 data sources (I_User, usr02) and exposes 3 fields with key field UserName.

Data Sources (2)

SourceAliasJoin Type
I_User I_User inner
usr02 usr02 from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPPMGUSRVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Prepayment Agrmt User Name VH view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserName bname User Name
UserID accnt UserID
UserDescription UserDescription Created By
@AbapCatalog.sqlViewName: 'IPPMGUSRVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Prepayment Agrmt User Name VH'
@VDM.viewType: #BASIC

@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A

@ClientHandling:{
    type: #CLIENT_DEPENDENT,
    algorithm: #SESSION_VARIABLE
}

@Search.searchable: true

define view I_PrepaymentAgrmtUserNameVH
  as select from usr02
    inner join   I_User on I_User.UserID = usr02.bname
{


      @Search.fuzzinessThreshold: 0.8
      @EndUserText.label: 'User Name'
      @ObjectModel.text.element: ['UserDescription']
      @Search.defaultSearchElement: true
  key bname           as UserName,
      @EndUserText.label: 'UserID'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      accnt           as UserID,
      // @UI.lineItem: [{hidden: true}]

      @EndUserText.label: 'Created By'
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      UserDescription as UserDescription

}
//

//where

//      UserID != ''

//  and UserDescription != ''

/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_USER",
"USR02"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/