I_ProductStockRequirementList

DDL: I_PRODUCTSTOCKREQUIREMENTLIST Type: view_entity COMPOSITE Package: PPH_DD_VDM_STLM

Product Stock Requirement Detail

I_ProductStockRequirementList is a Composite CDS View that provides data about "Product Stock Requirement Detail" in SAP S/4HANA. Part of development package PPH_DD_VDM_STLM.

Parameters (3)

NameTypeDefault
P_Material matnr
P_Plant werks_d
P_MRPArea berid

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product Stock Requirement Detail view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (20)

KeyFieldSource TableSource FieldDescription
Material Material Vehicle Model
Plant Plant Valuation Area
MRPArea MRParea MRP Area
CalendarDate CalendarDate Calendar Date
BufferLevelStartDate BufferLevelStartDate
BufferLevelEndDate BufferLevelEndDate
MaterialSafetyStockQty SafetyStock
ReorderThresholdQuantity ReorderPoint
MaterialMaxStockLevelQuantity MaxStock ProductStrgCap.
OnHandAlertThldQty ThresholdQty
OnHandStockQuantity OnHandStock
OverMaxStockZoneQty MaxProjectedStockInDLT
StockOutZoneQty MinProjectedStockInDLT
DecoupledLeadTime DecoupledLeadTime
SpikeHorizonEndDate SpikeHorizon
BaseUnitofMeasure BaseUnit Unit of Measure
HorizonStartDate HorizonStartDate
HorizonEndDate HorizonEndDate
DDProdBufDspRangeStartDate DDProdBufDspRangeStartDate
DDProdBufDspRangeEndDate DDProdBufDspRangeEndDate

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_ProductStockRequirementList.
-- 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_Material : matnr, P_Plant : werks_d, P_MRPArea : berid

CREATE VIEW I_ProductStockRequirementList AS
SELECT
  Material,
  Plant,
  MRPArea,
  CalendarDate,
  BufferLevelStartDate,
  BufferLevelEndDate,
  SafetyStock AS MaterialSafetyStockQty,
  ReorderPoint AS ReorderThresholdQuantity,
  MaxStock AS MaterialMaxStockLevelQuantity,
  ThresholdQty AS OnHandAlertThldQty,
  OnHandStock AS OnHandStockQuantity,
  MaxProjectedStockInDLT AS OverMaxStockZoneQty,
  MinProjectedStockInDLT AS StockOutZoneQty,
  DecoupledLeadTime,
  SpikeHorizon AS SpikeHorizonEndDate,
  BaseUnit AS BaseUnitofMeasure,
  HorizonStartDate,
  HorizonEndDate,
  DDProdBufDspRangeStartDate,
  DDProdBufDspRangeEndDate
;