I_OIL_ExchangeOpeningBalance

DDL: I_OIL_EXCHANGEOPENINGBALANCE Type: view_entity COMPOSITE

Exchanges Opening Balance Data

I_OIL_ExchangeOpeningBalance is a Composite CDS View that provides data about "Exchanges Opening Balance Data" in SAP S/4HANA. It reads from 1 data source (I_OIL_ExchangesMovementData) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
I_OIL_ExchangesMovementData I_OIL_ExchangesMovementData from

Parameters (3)

NameTypeDefault
P_PostingDate budat
P_YearWeek nsdm_yearweek
P_YearMonth nsdm_yearmonth

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Exchanges Opening Balance Data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view

Fields (3)

KeyFieldSource TableSource FieldDescription
MaterialBaseUnit MaterialBaseUnit Valuation Unit
ExchangeLiftsQuantity
ExchangeReceiptsQuantity

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_OIL_ExchangeOpeningBalance.
-- 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.
-- Parameters: P_PostingDate : budat, P_YearWeek : nsdm_yearweek, P_YearMonth : nsdm_yearmonth

CREATE VIEW I_OIL_ExchangeOpeningBalance AS
SELECT
  MaterialBaseUnit,
  sum (ExchangeLiftsQuantity) AS ExchangeLiftsQuantity,
  sum (ExchangeReceiptsQuantity) AS ExchangeReceiptsQuantity
FROM I_OIL_ExchangesMovementData
;