A_BudgetAccountCoreHierarchyT

DDL: A_BUDGETACCOUNTCOREHIERARCHYT SQL: ABDGTACCCOREHTXT Type: view COMPOSITE

Budget Account Hierarchy Text

A_BudgetAccountCoreHierarchyT is a Composite CDS View that provides data about "Budget Account Hierarchy Text" in SAP S/4HANA. It reads from 1 data source (I_BudgetAccountHierarchyText) and exposes 5 fields with key fields BudgetAccountHierarchy, ValidityEndDate, Language.

Data Sources (1)

SourceAliasJoin Type
I_BudgetAccountHierarchyText I_BudgetAccountHierarchyText from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ABDGTACCCOREHTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Budget Account Hierarchy Text view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #TEXT view
OData.entityType.name A_BudgetAccountCoreHierarchyText_Type view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BudgetAccountHierarchy BudgetAccountHierarchy
KEY ValidityEndDate ValidityEndDate ValidTo
KEY Language Language Report Text Language
ValidityStartDate ValidityStartDate Validity Start Date
BudgetAccountHierarchyName BudgetAccountHierarchyName Description

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_BudgetAccountCoreHierarchyT.
-- 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.
-- SQL view name: ABDGTACCCOREHTXT

CREATE VIEW A_BudgetAccountCoreHierarchyT AS
SELECT
  BudgetAccountHierarchy,
  ValidityEndDate,
  Language,
  ValidityStartDate,
  BudgetAccountHierarchyName
FROM I_BudgetAccountHierarchyText
;