I_AcctTypeText

DDL: I_ACCTTYPETEXT SQL: IACCTYPETEXT Type: view BASIC

Account Type Text

I_AcctTypeText is a Basic CDS View that provides data about "Account Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields FinancialAccountType, 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 (11)

NameValueLevelField
AbapCatalog.sqlViewName IACCTYPETEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Account Type Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FinancialAccountType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FinancialAccountType
KEY Language ddlanguage
FinancialAccountTypeName ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'IACCTYPETEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Account Type Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'FinancialAccountType'

@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@VDM.viewType: #BASIC
@AbapCatalog.preserveKey:true

define view I_AcctTypeText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast ( substring( domvalue_l, 1, 1 ) as koart)     as FinancialAccountType,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key ddlanguage                                         as Language,

      @Semantics.text: true
      ddtext                                             as FinancialAccountTypeName,

      // Associations

      _Language
}
where
      domname  = 'KOART'
  and as4local = 'A'