I_BudgetStructure

DDL: I_BUDGETSTRUCTURE SQL: IFMBDGTSTR Type: view BASIC

Budget Structure

I_BudgetStructure (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_BudgetStructure is a Basic CDS View that provides data about "Budget Structure" in SAP S/4HANA. It reads from 1 data source (fmbs_bs) and exposes 4 fields with key fields FinancialManagementArea, BudgetStructure. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-FM-BCS-BU
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
fmbs_bs fmbs_bs from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_FinancialManagementArea _FinMgmtArea $projection.FinancialManagementArea = _FinMgmtArea.FinancialManagementArea
[0..*] I_BudgetStructureText _Text

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IFMBDGTSTR view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey BudgetStructure view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Budget Structure view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea fm_area Financial Management Area
KEY BudgetStructure bs Name of Budget Structure
_FinMgmtArea _FinMgmtArea
_Text _Text

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 I_BudgetStructure.
-- 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: IFMBDGTSTR

CREATE VIEW I_BudgetStructure AS
SELECT
  fm_area AS FinancialManagementArea,
  bs AS BudgetStructure
FROM fmbs_bs
LEFT OUTER JOIN I_FinancialManagementArea AS _FinMgmtArea ON FinancialManagementArea = _FinMgmtArea.FinancialManagementArea  -- association [1..1]
LEFT OUTER JOIN I_BudgetStructureText AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;