A_CnsldtnChartOfAccountsT

DDL: A_CNSLDTNCHARTOFACCOUNTST SQL: ACSCHTACCTST Type: view BASIC

Consolidation Chart of Accounts Text

A_CnsldtnChartOfAccountsT is a Basic CDS View that provides data about "Consolidation Chart of Accounts Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnChartOfAccountsT) and exposes 4 fields with key fields ConsolidationChartOfAccounts, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnChartOfAccountsT I_CnsldtnChartOfAccountsT from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnChartOfAccounts _CnsldtnChartOfAccounts $projection.ConsolidationChartOfAccounts = _CnsldtnChartOfAccounts.ConsolidationChartOfAccounts

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSCHTACCTST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consolidation Chart of Accounts Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ConsolidationChartOfAccounts view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entitySet.name ConsolidationChtAcctsText view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationChartOfAccounts
KEY Language Language
ConsolidationChartOfAcctsText
_CnsldtnChartOfAccounts _CnsldtnChartOfAccounts
@AbapCatalog.sqlViewName: 'ACSCHTACCTST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Consolidation Chart of Accounts Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ConsolidationChartOfAccounts'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #CUSTOMIZING,
  serviceQuality: #A,
  sizeCategory: #S
}
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@OData.entitySet.name: 'ConsolidationChtAcctsText'
@Metadata.ignorePropagatedAnnotations: true
define view A_CnsldtnChartOfAccountsT
  as select from I_CnsldtnChartOfAccountsT

  association [0..1] to A_CnsldtnChartOfAccounts as _CnsldtnChartOfAccounts on $projection.ConsolidationChartOfAccounts = _CnsldtnChartOfAccounts.ConsolidationChartOfAccounts

{
      @ObjectModel.foreignKey.association: '_CnsldtnChartOfAccounts'
  key cast(ConsolidationChartOfAccounts as fincs_itcoa preserving type )    as ConsolidationChartOfAccounts,

      @Semantics.language: true
  key Language,

      @Semantics.text: true
      cast(ConsolidationChartOfAcctsText as fincs_itcoa_t preserving type ) as ConsolidationChartOfAcctsText,

      // associations

      _CnsldtnChartOfAccounts // required for value help retrieval and navigation

}