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.

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

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY PubSecBudgetAccount PubSecBudgetAccount Budget Account
KEY PubSecBudgetAccountCoCode PubSecBudgetAccountCoCode Company Code for Budget Account
KEY Language Language Report Text Language
ChartOfAccounts ChartOfAccounts Node Class
BudgetAccountName BudgetAccountName
BudgetAccountDescription BudgetAccountDescription
_BudgetAccount _BudgetAccount

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view A_BudgetAccountCoreText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW A_BudgetAccountCoreText AS
SELECT
  PubSecBudgetAccount,
  PubSecBudgetAccountCoCode,
  Language,
  ChartOfAccounts,
  BudgetAccountName,
  BudgetAccountDescription
FROM I_PubSecBudgetAccountText
LEFT OUTER JOIN A_BudgetAccountCore AS _BudgetAccount ON PubSecBudgetAccount = _BudgetAccount.PubSecBudgetAccount AND PubSecBudgetAccountCoCode = _BudgetAccount.PubSecBudgetAccountCoCode  -- association [1..1]
;