I_ReceivablesFinancingTypeText

DDL: I_RECEIVABLESFINANCINGTYPETEXT Type: view_entity BASIC Package: FTRF_CORE

Receivables Financing Type - Text

I_ReceivablesFinancingTypeText is a Basic CDS View that provides data about "Receivables Financing Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ReceivablesFinancingType, Language. It has 1 association to related views. Part of development package FTRF_CORE.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ReceivablesFinancingType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Receivables Financing Type - Text view
VDM.viewType #BASIC view
Analytics.technicalName IRBLSFINTYPET view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ReceivablesFinancingType
KEY Language
ReceivablesFinancingTypeName
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ReceivablesFinancingType'
@ObjectModel.dataCategory: #TEXT
@ObjectModel: { usageType: { dataClass: #META,
                             serviceQuality: #A,
                             sizeCategory: #S } }
@EndUserText.label: 'Receivables Financing Type - Text'
@VDM.viewType: #BASIC
@Analytics.technicalName: 'IRBLSFINTYPET'

define view entity I_ReceivablesFinancingTypeText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
  key cast( left(dd07t.domvalue_l, 5) as ftrf_financing_type )     as ReceivablesFinancingType,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( dd07t.ddlanguage as spras preserving type )            as Language,

      @Semantics.text: true
      cast( substring(ddtext, 1, 60) as char60 preserving type )   as ReceivablesFinancingTypeName,

      _Language
}
where
      dd07t.domname  = 'FTRF_FINANCING_TYPE'
  and dd07t.as4local = 'A'