I_CashPoolTransfDrctnText

DDL: I_CASHPOOLTRANSFDRCTNTEXT SQL: ICPLTDT Type: view BASIC Package: FCLM_CASHPOOLING

Cash Pool Transfer Direction Text

I_CashPoolTransfDrctnText is a Basic CDS View that provides data about "Cash Pool Transfer Direction Text" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field CashPoolTransfDrctn. Part of development package FCLM_CASHPOOLING.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText _Text from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICPLTDT view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Cash Pool Transfer Direction Text view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CashPoolTransfDrctn view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CashPoolTransfDrctn
CashPoolTransfDrctnText DomainText
@AbapCatalog.sqlViewName: 'ICPLTDT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Cash Pool Transfer Direction Text'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CashPoolTransfDrctn'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
define view I_CashPoolTransfDrctnText
  as select from I_DomainFixedValueText as _Text
{
      @ObjectModel.text.element: 'CashPoolTransfDrctnText'
  key right( DomainValue, 1 ) as CashPoolTransfDrctn,
  
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text
      DomainText  as CashPoolTransfDrctnText
}
where
      SAPDataDictionaryDomain = 'FCLM_CPL_TRANSF_DRCTN'
  and _Text.Language          = $session.system_language;