I_MaterialDailySubstanceVolume

DDL: I_MATERIALDAILYSUBSTANCEVOLUME Type: view_entity COMPOSITE Package: EHPMA_SVT_CNS_RETRACKING

Daily material substance volumes

I_MaterialDailySubstanceVolume is a Composite CDS View that provides data about "Daily material substance volumes" in SAP S/4HANA. It reads from 1 data source (I_SVTAggrgnItmByBusProcess) and exposes 7 fields with key fields SVTAggregationItemUUID, SubPeriodTrackingStartDate, Material. Part of development package EHPMA_SVT_CNS_RETRACKING.

Data Sources (1)

SourceAliasJoin Type
I_SVTAggrgnItmByBusProcess I_SVTAggrgnItmByBusProcess from

Annotations (6)

NameValueLevelField
EndUserText.label Daily material substance volumes view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY SVTAggregationItemUUID SVTAggregationItemUUID Aggr item uuid
KEY SubPeriodTrackingStartDate SubPeriodTrackingStartDate Tracking Start Date
KEY Material Material Vehicle Model
ConfirmedSubstanceVolume
SVTAggregationHeaderUUID SVTAggregationHeaderUUID Agg header doc uuid
_SVTAggregationHeader _SVTAggregationHeader
_SVTAggregationItem _SVTAggregationItem

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_MaterialDailySubstanceVolume.
-- 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.

CREATE VIEW I_MaterialDailySubstanceVolume AS
SELECT
  SVTAggregationItemUUID,
  SubPeriodTrackingStartDate,
  Material,
  cast( sum(ConfirmedSubstanceVolume) as ehpma_svt_subst_vol_ui ) AS ConfirmedSubstanceVolume,
  SVTAggregationHeaderUUID
FROM I_SVTAggrgnItmByBusProcess
;