I_CashPoolTypeText

DDL: I_CASHPOOLTYPETEXT SQL: ICPLTYPET Type: view BASIC Package: FCLM_CASHPOOLING

Cash Pool Type Text

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

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText _Text from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICPLTYPET view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Cash Pool Type Text view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CashPoolType view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CashPoolType DomainValue
CashPoolTypeText DomainText
@AbapCatalog.sqlViewName: 'ICPLTYPET'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Cash Pool Type Text'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CashPoolType'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_CashPoolTypeText
  as select from I_DomainFixedValueText as _Text
{
      @ObjectModel.text.element: 'CashPoolTypeText'
  key DomainValue as CashPoolType,
      @UI.hidden: true
      @Semantics.text
      DomainText  as CashPoolTypeText
}
where
      SAPDataDictionaryDomain = 'FCLM_CPL_TYPE'
  and _Text.Language          = $session.system_language;