I_FloatingMaterialDetail

DDL: I_FLOATINGMATERIALDETAIL Type: view_entity COMPOSITE

Floating Materials Stock Issued Person

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

Data Sources (1)

SourceAliasJoin Type
I_TotalFloatingMaterialStock _TotalFloatingMaterialStock from

Parameters (1)

NameTypeDefault
P_DfsObjectValdtyStartDate syst_datum

Annotations (8)

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

KeyFieldSource TableSource FieldDescription
KEY Material I_TotalFloatingMaterialStock Material Vehicle Model
KEY Plant I_TotalFloatingMaterialStock Plant Valuation Area
KEY StorageLocation I_TotalFloatingMaterialStock StorageLocation StorageLocation
KEY DfsObjectSubType _TotIssdToPersFltgMaterial DfsObjectSubType Subtype
KEY EmployeePersonnelNumber _TotIssdToPersFltgMaterial EmployeePersonnelNumber
KEY DfsIssueToPersonnelUsageType _TotIssdToPersFltgMaterial DfsIssueToPersonnelUsageType
MaterialBaseUnit _TotIssdToPersFltgMaterial MaterialBaseUnit Valuation Unit
GoodsIssueQtyInBaseUnit _TotIssdToPersFltgMaterial GoodsIssueQtyInBaseUnit
ReturnQuantity _TotIssdToPersFltgMaterial ReturnQuantity
ActualFlxMtPlObjVarAvailVal I_TotalFloatingMaterialStock ActualFlxMtPlObjVarAvailVal
MatlWrhsStkQtyInMatlBaseUnit
PurchaseOrderQuantityUnit _TotalOrderedFloatingMaterial PurchaseOrderQuantityUnit Order Unit
OrderQuantity _TotalOrderedFloatingMaterial OrderQuantity Quantity
BaseUnit _TotRequestedFloatingMaterial BaseUnit Unit of Measure
RequestedQuantity _TotRequestedFloatingMaterial RequestedQuantity Requested 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_FloatingMaterialDetail.
-- 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_DfsObjectValdtyStartDate : syst_datum

CREATE VIEW I_FloatingMaterialDetail AS
SELECT
  _TotalFloatingMaterialStock.Material AS Material,
  _TotalFloatingMaterialStock.Plant AS Plant,
  _TotalFloatingMaterialStock.StorageLocation AS StorageLocation,
  _TotIssdToPersFltgMaterial.DfsObjectSubType AS DfsObjectSubType,
  _TotIssdToPersFltgMaterial.EmployeePersonnelNumber AS EmployeePersonnelNumber,
  _TotIssdToPersFltgMaterial.DfsIssueToPersonnelUsageType AS DfsIssueToPersonnelUsageType,
  _TotIssdToPersFltgMaterial.MaterialBaseUnit AS MaterialBaseUnit,
  _TotIssdToPersFltgMaterial.GoodsIssueQtyInBaseUnit AS GoodsIssueQtyInBaseUnit,
  _TotIssdToPersFltgMaterial.ReturnQuantity AS ReturnQuantity,
  _TotalFloatingMaterialStock.ActualFlxMtPlObjVarAvailVal AS ActualFlxMtPlObjVarAvailVal,
  cast(_TotalFloatingMaterialStock.ActualFlxMtPlObjVarAvailVal as abap.quan( 15, 3 ) ) AS MatlWrhsStkQtyInMatlBaseUnit,
  _TotalOrderedFloatingMaterial.PurchaseOrderQuantityUnit AS PurchaseOrderQuantityUnit,
  _TotalOrderedFloatingMaterial.OrderQuantity AS OrderQuantity,
  _TotRequestedFloatingMaterial.BaseUnit AS BaseUnit,
  _TotRequestedFloatingMaterial.RequestedQuantity AS RequestedQuantity
FROM I_TotalFloatingMaterialStock AS _TotalFloatingMaterialStock
;