E_BudgetEntryItem

DDL: E_BUDGETENTRYITEM SQL: EFMBEI Type: view EXTENSION

FM Budget Entry Item - Extension

E_BudgetEntryItem is a Extension CDS View that provides data about "FM Budget Entry Item - Extension" in SAP S/4HANA. It reads from 1 data source (fmbl) and exposes 5 fields with key fields FinancialManagementArea, BudgetEntryDocument, BudgetDocumentYear, BudgetEntryDocumentItem, HighestPeriodOfBudgetingRecord.

Data Sources (1)

SourceAliasJoin Type
fmbl Persistence from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName EFMBEI view
VDM.viewType #EXTENSION view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label FM Budget Entry Item - Extension view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea fmbl fm_area FM Area
KEY BudgetEntryDocument fmbl docnr Well doc.no.
KEY BudgetDocumentYear fmbl docyear Ref. Doc. Year
KEY BudgetEntryDocumentItem fmbl docln Matching Document Line Item
KEY HighestPeriodOfBudgetingRecord fmbl rpmax Period

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 E_BudgetEntryItem.
-- 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: EFMBEI

CREATE VIEW E_BudgetEntryItem AS
SELECT
  Persistence.fm_area AS FinancialManagementArea,
  Persistence.docnr AS BudgetEntryDocument,
  Persistence.docyear AS BudgetDocumentYear,
  Persistence.docln AS BudgetEntryDocumentItem,
  Persistence.rpmax AS HighestPeriodOfBudgetingRecord
FROM fmbl AS Persistence
;