I_IL_CreditCardTransacTypeText

DDL: I_IL_CREDITCARDTRANSACTYPETEXT Type: view_entity BASIC Package: GLO_FIN_CASH_IL

Credit Card Transaction Type - Text

I_IL_CreditCardTransacTypeText is a Basic CDS View that provides data about "Credit Card Transaction Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field Language. Part of development package GLO_FIN_CASH_IL.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Credit Card Transaction Type - Text view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
TransactionTypeDescription ddtext
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Credit Card Transaction Type - Text'

@Metadata.ignorePropagatedAnnotations: true

@VDM.viewType:  #BASIC

@ObjectModel: { dataCategory: #TEXT,
                usageType:{
                serviceQuality: #A,
                sizeCategory: #S,
                dataClass: #MASTER } }


/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view entity I_IL_CreditCardTransacTypeText
  as select from dd07t
{
      @Semantics.language: true
  key ddlanguage                          as Language,

  key cast(
    substring(domvalue_l,1,1)
  as gsfincsil_trn_type preserving type ) as IL_CreditCardTransactionType,

      @Semantics.text: true
      ddtext                              as TransactionTypeDescription
}

where
       domname    = 'GSFINCSIL_TRN_TYPE'
  and  as4local   = 'A'
  and(
       ddlanguage = 'E'
    or ddlanguage = $session.system_language
  )