I_TotalOrderedFloatingMaterial

DDL: I_TOTALORDEREDFLOATINGMATERIAL Type: view_entity COMPOSITE

Aggregated Ordered Floating Material

I_TotalOrderedFloatingMaterial is a Composite CDS View that provides data about "Aggregated Ordered Floating Material" in SAP S/4HANA. It reads from 1 data source (I_TotalFloatingMaterialStock) and exposes 5 fields with key fields Material, Plant, StorageLocation.

Data Sources (1)

SourceAliasJoin Type
I_TotalFloatingMaterialStock _TotalFloatingMaterialStock from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Aggregated Ordered Floating Material view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Material I_TotalFloatingMaterialStock Material Vehicle Model
KEY Plant I_TotalFloatingMaterialStock Plant Valuation Area
KEY StorageLocation I_TotalFloatingMaterialStock StorageLocation StorageLocation
PurchaseOrderQuantityUnit _PurchaseOrderItem PurchaseOrderQuantityUnit Order Unit
OrderQuantity

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_TotalOrderedFloatingMaterial.
-- 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_TotalOrderedFloatingMaterial AS
SELECT
  _TotalFloatingMaterialStock.Material AS Material,
  _TotalFloatingMaterialStock.Plant AS Plant,
  _TotalFloatingMaterialStock.StorageLocation AS StorageLocation,
  _PurchaseOrderItem.PurchaseOrderQuantityUnit AS PurchaseOrderQuantityUnit,
  sum(_PurchaseOrderItem.OrderQuantity) AS OrderQuantity
FROM I_TotalFloatingMaterialStock AS _TotalFloatingMaterialStock
;