I_BudgetDocumentTotalAmount

DDL: I_BUDGETDOCUMENTTOTALAMOUNT SQL: IBDGTDOCAMOUNT Type: view TRANSACTIONAL Package: ODATA_PSM_S4C_FM_BUDGET

Budget Document Total Amount

I_BudgetDocumentTotalAmount is a Transactional CDS View that provides data about "Budget Document Total Amount" in SAP S/4HANA. It reads from 1 data source (I_BudgetDocumentAmount) and exposes 8 fields with key fields BudgetDocument, BudgetDocumentYear, ControllingArea. Part of development package ODATA_PSM_S4C_FM_BUDGET.

Data Sources (1)

SourceAliasJoin Type
I_BudgetDocumentAmount I_BudgetDocumentAmount from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBDGTDOCAMOUNT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Budget Document Total Amount view
VDM.viewType #TRANSACTIONAL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BudgetDocument BudgetDocument Document Number
KEY BudgetDocumentYear BudgetDocumentYear Fiscal Year
KEY ControllingArea ControllingArea Controlling Area
GlobalCurrency GlobalCurrency GM Billing Element: Global Currency
SenderBudgetTotalAmount
ReceiverBudgetTotalAmount
_GlobalCurrency _GlobalCurrency
_ControllingArea _ControllingArea

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_BudgetDocumentTotalAmount.
-- 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: IBDGTDOCAMOUNT

CREATE VIEW I_BudgetDocumentTotalAmount AS
SELECT
  BudgetDocument,
  BudgetDocumentYear,
  ControllingArea,
  GlobalCurrency,
  sum( SenderAmountInGlobalCurrency) AS SenderBudgetTotalAmount,
  sum( ReceiverAmountInGlobalCurrency) AS ReceiverBudgetTotalAmount
FROM I_BudgetDocumentAmount
;