I_BudgetType

DDL: I_BUDGETTYPE SQL: IFMBDGTTYPE Type: view BASIC

Budget Type

I_BudgetType (Basic)

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

FundsManagementBudgetType · Cross Applications

I_BudgetType is a Basic CDS View (Dimension) that provides data about "Budget Type" in SAP S/4HANA. It reads from 1 data source (fmbudtype) and exposes 6 fields with key fields FinancialManagementArea, BudgetType, BudgetValueType. It has 3 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, Analytical Dimension, Data Source for Data Extraction, Association Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
fmbudtype fmbudtype from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_FinancialManagementArea _FinMgmtArea $projection.FinancialManagementArea = _FinMgmtArea.FinancialManagementArea
[1..1] I_BudgetValueType _BudgetValueType $projection.BudgetValueType = _BudgetValueType.BudgetValueType
[0..*] I_BudgetTypeText _Text

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IFMBDGTTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey BudgetType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Budget Type view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea fm_area Financial Management Area
KEY BudgetType budtype Budget Type
KEY BudgetValueType valtype BCS Value Type
_Text _Text
_FinMgmtArea _FinMgmtArea
_BudgetValueType _BudgetValueType

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_BudgetType.
-- 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: IFMBDGTTYPE

CREATE VIEW I_BudgetType AS
SELECT
  fm_area AS FinancialManagementArea,
  budtype AS BudgetType,
  valtype AS BudgetValueType
FROM fmbudtype
LEFT OUTER JOIN I_FinancialManagementArea AS _FinMgmtArea ON FinancialManagementArea = _FinMgmtArea.FinancialManagementArea  -- association [1..1]
LEFT OUTER JOIN I_BudgetValueType AS _BudgetValueType ON BudgetValueType = _BudgetValueType.BudgetValueType  -- association [1..1]
LEFT OUTER JOIN I_BudgetTypeText AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;