I_BudgetValueType

DDL: I_BUDGETVALUETYPE SQL: IFMBDGVALTYPE Type: view BASIC

Budget Value Type

I_BudgetValueType (Basic)

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

FundsMgmtBudgetUsageState · Cross Applications

I_BudgetValueType is a Basic CDS View (Dimension) that provides data about "Budget Value Type" in SAP S/4HANA. It reads from 1 data source (buvaltype) and exposes 3 fields with key field BudgetValueType. 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, Data Source for Data Extraction
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
buvaltype buvaltype from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_BudgetType _BudgetType $projection.BudgetValueType = _BudgetType.BudgetType
[0..*] I_BudgetValueTypeText _Text

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IFMBDGVALTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey BudgetValueType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META 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 Value Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BudgetValueType valtype BCS Value Type
_BudgetType _BudgetType
_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_BudgetValueType.
-- 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: IFMBDGVALTYPE

CREATE VIEW I_BudgetValueType AS
SELECT
  valtype AS BudgetValueType
FROM buvaltype
LEFT OUTER JOIN I_BudgetType AS _BudgetType ON BudgetValueType = _BudgetType.BudgetType  -- association [0..*]
LEFT OUTER JOIN I_BudgetValueTypeText AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;