F_Mmim_Gr4po_Valgr_Stock

DDL: F_MMIM_GR4PO_VALGR_STOCK SQL: FMMIMVALBLSTOCK Type: view

Purchase order valuated blocked stock

F_Mmim_Gr4po_Valgr_Stock is a CDS View that provides data about "Purchase order valuated blocked stock" in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentRecord) and exposes 6 fields.

Data Sources (1)

SourceAliasJoin Type
I_MaterialDocumentRecord I_MaterialDocumentRecord from

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName FMMIMVALBLSTOCK view
EndUserText.label Purchase order valuated blocked stock view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
StockIdentifyingMaterial StockIdentifyingMaterial Stock Mat.
Plant Plant Valuation Area
InventoryStockType InventoryStockType Stock Type
PurchaseOrder PurchaseOrder Purchasing Document
PurchaseOrderItem PurchaseOrderItem Purchasing Document Item
MatlStkChangeQtyInBaseUnit

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 F_Mmim_Gr4po_Valgr_Stock.
-- 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.
-- SQL view name: FMMIMVALBLSTOCK

CREATE VIEW F_Mmim_Gr4po_Valgr_Stock AS
SELECT
  StockIdentifyingMaterial,
  Plant,
  InventoryStockType,
  PurchaseOrder,
  PurchaseOrderItem,
  sum(MatlStkChangeQtyInBaseUnit) AS MatlStkChangeQtyInBaseUnit
FROM I_MaterialDocumentRecord
;