I_CACreditDebitIndicatorText

DDL: I_CACREDITDEBITINDICATORTEXT SQL: ICACREDEBPAYT Type: view BASIC

Basic View für Gutschrift Lastschrift Texte

I_CACreditDebitIndicatorText is a Basic CDS View that provides data about "Basic View für Gutschrift Lastschrift Texte" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields CAPaymentIsCreditOrDebit, Language. 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 (10)

NameValueLevelField
AbapCatalog.sqlViewName ICACREDEBPAYT view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Basic View für Gutschrift Lastschrift Texte view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CAPaymentIsCreditOrDebit view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CAPaymentIsCreditOrDebit
KEY Language
CAPaymentIsCreditOrDebitName
_Language _Language
@AbapCatalog.sqlViewName: 'ICACREDEBPAYT'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Basic View für Gutschrift Lastschrift Texte'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CAPaymentIsCreditOrDebit'
define view I_CACreditDebitIndicatorText 
    as select from dd07t
    association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  
  key cast ( cast ( substring( dd07t.domvalue_l,1,1 ) as abap.char( 1 ) ) as crdeb_pay) as CAPaymentIsCreditOrDebit,
    
      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key cast (ddlanguage as spras)  as Language,
  
      @Semantics.text
      cast ( ddtext as description_kk ) as CAPaymentIsCreditOrDebitName,
      
      _Language
}
where
      domname = 'CRDEB_PAY'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/