I_TotRequestedFloatingMaterial

DDL: I_TOTREQUESTEDFLOATINGMATERIAL Type: view_entity COMPOSITE

Aggregated Requested Floating Material

I_TotRequestedFloatingMaterial is a Composite CDS View that provides data about "Aggregated Requested 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 Requested 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
BaseUnit _Purchaserequisitionitem BaseUnit Unit of Measure
RequestedQuantity

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_TotRequestedFloatingMaterial.
-- 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_TotRequestedFloatingMaterial AS
SELECT
  _TotalFloatingMaterialStock.Material AS Material,
  _TotalFloatingMaterialStock.Plant AS Plant,
  _TotalFloatingMaterialStock.StorageLocation AS StorageLocation,
  _Purchaserequisitionitem.BaseUnit AS BaseUnit,
  sum(_Purchaserequisitionitem.RequestedQuantity) AS RequestedQuantity
FROM I_TotalFloatingMaterialStock AS _TotalFloatingMaterialStock
;