I_CshPosCurrencySourceText

DDL: I_CSHPOSCURRENCYSOURCETEXT SQL: ICPCURSCTXT Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICPCURSCTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
EndUserText.label Cash Position Currency Source - Text view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CashPositionCurrencySource view
ClientHandling.algorithm #SESSION_VARIABLE 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
@AbapCatalog.sqlViewName: 'ICPCURSCTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Cash Position Currency Source - Text'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CashPositionCurrencySource'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

define view 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';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/