I_PrepaymentAgrmtUserNameText

DDL: I_PREPAYMENTAGRMTUSERNAMETEXT SQL: IPPMGUSRTXT Type: view BASIC

Prepayment Agreement User Name Text

I_PrepaymentAgrmtUserNameText is a Basic CDS View that provides data about "Prepayment Agreement User Name Text" 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 (13)

NameValueLevelField
AbapCatalog.sqlViewName IPPMGUSRTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Prepayment Agreement User Name Text 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 {@i18n>UserName}
UserID accnt {@i18n>UserID}
UserDescription UserDescription Created By
@AbapCatalog.sqlViewName: 'IPPMGUSRTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@EndUserText.label: 'Prepayment Agreement User Name Text'


@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


//refer I_SBRUserNameText  and I_Acmusr02 for exception

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


      @Search.fuzzinessThreshold: 0.8
      @EndUserText.label: '{@i18n>UserName}'
      @ObjectModel.text.element: ['UserDescription']
      @Search.defaultSearchElement: true
  key bname           as UserName,
      @EndUserText.label: '{@i18n>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":""
}
}*/