I_BudgetingProcessItem

DDL: I_BUDGETINGPROCESSITEM SQL: IFMBDGTPROCITEM Type: view BASIC

Budgeting Process Item

I_BudgetingProcessItem is a Basic CDS View that provides data about "Budgeting Process Item" in SAP S/4HANA. It reads from 1 data source (I_InternalBudgetingProcess) and exposes 2 fields with key field BudgetingProcessAtLineLevel. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_InternalBudgetingProcess ProcessLine from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_InternalBudgetingProcessText _Text $projection.BudgetingProcessAtLineLevel = _Text.InternalBudgetingProcess

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFMBDGTPROCITEM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Budgeting Process Item view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BudgetingProcessAtLineLevel InternalBudgetingProcess Trans.
_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_BudgetingProcessItem.
-- 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: IFMBDGTPROCITEM

CREATE VIEW I_BudgetingProcessItem AS
SELECT
  InternalBudgetingProcess AS BudgetingProcessAtLineLevel
FROM I_InternalBudgetingProcess AS ProcessLine
LEFT OUTER JOIN I_InternalBudgetingProcessText AS _Text ON BudgetingProcessAtLineLevel = _Text.InternalBudgetingProcess  -- association [0..*]
;