I_CshPosCurrencySourceText

DDL: I_CSHPOSCURRENCYSOURCETEXT Type: view_entity BASIC Package: FCLM_CP_SHORTTERM

Cash Position Currency Source - Text

I_CshPosCurrencySourceText is a Basic CDS View that provides data about "Cash Position Currency Source - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, CashPositionCurrencySource. It has 1 association to related views. Part of development package FCLM_CP_SHORTTERM.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
EndUserText.label Cash Position Currency Source - Text view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName ICPCURSCTXT view
ObjectModel.representativeKey CashPositionCurrencySource view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY CashPositionCurrencySource
DomainValue dd07t domvalue_l
CashPositionCurrencySourceText dd07t ddtext
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Cash Position Currency Source - Text'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'ICPCURSCTXT'
@ObjectModel.representativeKey: 'CashPositionCurrencySource'
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

define view entity I_CshPosCurrencySourceText
  as select from dd07t
  association [0..1] to I_Language                   as _Language    on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( dd07t.ddlanguage as spras preserving type ) as Language,
      @ObjectModel.text.element: ['CashPositionCurrencySourceText']
  key cast( dd07t.domvalue_l as fclm_cp_currency_type)   as CashPositionCurrencySource,
      @Analytics.hidden: true
      @Consumption.hidden: true
      dd07t.domvalue_l                                  as DomainValue,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      dd07t.ddtext                                      as CashPositionCurrencySourceText,

      _Language
}
where
      dd07t.domname  = 'FCLM_CP_CURRENCY_TYPE'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000';