C_ReconAccountTextVHTemp

DDL: C_RECONACCOUNTTEXTVHTEMP SQL: CRECONACCTVHTEXT Type: view CONSUMPTION

C_ReconAccountTextVHTemp is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_GLAccountText) and exposes 5 fields with key fields GLAccount, ChartOfAccounts, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountText I_GLAccountText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ChartOfAccounts _ChartOfAccounts $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CRECONACCTVHTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey GLAccount view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GLAccount GLAccount
KEY ChartOfAccounts ChartOfAccounts
KEY Language Language
GLAccountLongName GLAccountLongName Description
_ChartOfAccounts _ChartOfAccounts
@AbapCatalog.sqlViewName: 'CRECONACCTVHTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.representativeKey: 'GLAccount'

@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER

define view C_ReconAccountTextVHTemp
  as select from I_GLAccountText
  association [0..1] to I_ChartOfAccounts as _ChartOfAccounts on $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts
  
{

  key GLAccount,
  @ObjectModel.foreignKey.association: '_ChartOfAccounts'
  key ChartOfAccounts,
      @Semantics.language:true
  key Language,
      @Semantics.text: true
      @EndUserText.label: 'Description'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  GLAccountLongName,
  _ChartOfAccounts

}