I_TotalFloatingMaterialStock

DDL: I_TOTALFLOATINGMATERIALSTOCK Type: view_entity COMPOSITE

Floating Materials Aggregated Stock

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

Data Sources (1)

SourceAliasJoin Type
I_DFS_UnrstrcdStkOnPlntStorLoc I_DFS_UnrstrcdStkOnPlntStorLoc from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Floating Materials Aggregated Stock 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 (4)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation StorageLocation
ActualFlxMtPlObjVarAvailVal Quantity

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_TotalFloatingMaterialStock.
-- 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_TotalFloatingMaterialStock AS
SELECT
  Material,
  Plant,
  StorageLocation,
  sum( cast ( MatlWrhsStkQtyInMatlBaseUnit as abap.int8 )) AS ActualFlxMtPlObjVarAvailVal
FROM I_DFS_UnrstrcdStkOnPlntStorLoc
;