A_BudgetAccountCoreText

DDL: A_BUDGETACCOUNTCORETEXT Type: view_entity BASIC

API for Budget Account Text

A_BudgetAccountCoreText is a Basic CDS View that provides data about "API for Budget Account Text" in SAP S/4HANA. It reads from 1 data source (I_PubSecBudgetAccountText) and exposes 7 fields with key fields PubSecBudgetAccount, PubSecBudgetAccountCoCode, Language. It has 1 association to related views. It is exposed through 1 OData service (API_BUDGETACCOUNTCORE).

Data Sources (1)

SourceAliasJoin Type
I_PubSecBudgetAccountText I_PubSecBudgetAccountText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_BudgetAccountCore _BudgetAccount $projection.PubSecBudgetAccount = _BudgetAccount.PubSecBudgetAccount and $projection.PubSecBudgetAccountCoCode = _BudgetAccount.PubSecBudgetAccountCoCode

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
OData.entityType.name BudgetAccountCoreText_Type view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label API for Budget Account Text view

OData Services (1)

ServiceBindingVersionContractRelease
API_BUDGETACCOUNTCORE API_BUDGETACCOUNTCORE V2 C2 C1

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY PubSecBudgetAccount PubSecBudgetAccount
KEY PubSecBudgetAccountCoCode PubSecBudgetAccountCoCode
KEY Language Language
ChartOfAccounts ChartOfAccounts
BudgetAccountName BudgetAccountName
BudgetAccountDescription BudgetAccountDescription
_BudgetAccount _BudgetAccount
@AccessControl.authorizationCheck: #CHECK

@VDM.viewType: #BASIC
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #B,
  sizeCategory: #L
}
@ObjectModel.dataCategory:#TEXT
@OData.entityType.name: 'BudgetAccountCoreText_Type'

// A-view annotations

@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

@EndUserText.label: 'API for Budget Account Text'
define view entity A_BudgetAccountCoreText
  as select from I_PubSecBudgetAccountText
  association [1..1] to A_BudgetAccountCore as _BudgetAccount on  $projection.PubSecBudgetAccount       = _BudgetAccount.PubSecBudgetAccount
                                                              and $projection.PubSecBudgetAccountCoCode = _BudgetAccount.PubSecBudgetAccountCoCode
{
  key PubSecBudgetAccount,
  key PubSecBudgetAccountCoCode,
      @Semantics.language:true
  key Language,
      ChartOfAccounts,
      @Semantics.text:true
      BudgetAccountName,
      @Semantics.text:true
      BudgetAccountDescription,
      /* Associations */
      _BudgetAccount
}