I_MaterialReceiptsFromDelivery

DDL: I_MATERIALRECEIPTSFROMDELIVERY Type: view_entity BASIC

Receipt of Materials from Deliveries

I_MaterialReceiptsFromDelivery is a Basic CDS View that provides data about "Receipt of Materials from Deliveries" in SAP S/4HANA. It reads from 1 data source (vrsli) and exposes 22 fields with key field MatlRcptsFrmDelivUUID. It has 5 associations to related views.

Data Sources (1)

SourceAliasJoin Type
vrsli vrsli from

Associations (5)

CardinalityTargetAliasCondition
[0..1] I_Product _Product $projection.Product = _Product.Product
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..1] I_InventorySpecialStockType _InventorySpecialStockType $projection.InventorySpecialStockType = _InventorySpecialStockType.InventorySpecialStockType
[0..1] I_UnitOfMeasure _BaseUnit $projection.BaseUnit = _BaseUnit.UnitOfMeasure
[0..1] I_GoodsMovementType _GoodsMovementType $projection.GoodsMovementType = _GoodsMovementType.GoodsMovementType

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.technicalName IMATLRCPTSFRMDLV view
EndUserText.label Receipt of Materials from Deliveries view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.representativeKey MatlRcptsFrmDelivUUID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY MatlRcptsFrmDelivUUID handle TS handle
Product matnr Vehicle Model
Plant werks Receiving Plant
InventorySpecialStockType sobkz Special Stock
SpecialStockNumber sonum Spec.Stock No.
Reservation rsnum Reservation
ReservationItem rspos Item no.
ReservationRecordType rsart Risk type
QuantityInBaseUnit rfmng Quantity
BaseUnit meins Valuation Unit
GoodsMovementType bwart Valuation Type
MRPElementCategory handle_objekt MRP Elmnt Ind.
MRPElement delnr Order No.(OLTP)
MRPElementItem delps Order Item
OrderID aufnr SettlementOrder
OrderItem posnr_pp Item Number
ReservationIsOutdated outdated Outdated
_Product _Product
_Plant _Plant
_InventorySpecialStockType _InventorySpecialStockType
_BaseUnit _BaseUnit
_GoodsMovementType _GoodsMovementType

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_MaterialReceiptsFromDelivery.
-- 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_MaterialReceiptsFromDelivery AS
SELECT
  handle AS MatlRcptsFrmDelivUUID,
  matnr AS Product,
  werks AS Plant,
  sobkz AS InventorySpecialStockType,
  sonum AS SpecialStockNumber,
  rsnum AS Reservation,
  rspos AS ReservationItem,
  rsart AS ReservationRecordType,
  rfmng AS QuantityInBaseUnit,
  meins AS BaseUnit,
  bwart AS GoodsMovementType,
  handle_objekt AS MRPElementCategory,
  delnr AS MRPElement,
  delps AS MRPElementItem,
  aufnr AS OrderID,
  posnr_pp AS OrderItem,
  outdated AS ReservationIsOutdated
FROM vrsli
LEFT OUTER JOIN I_Product AS _Product ON Product = _Product.Product  -- association [0..1]
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
LEFT OUTER JOIN I_InventorySpecialStockType AS _InventorySpecialStockType ON InventorySpecialStockType = _InventorySpecialStockType.InventorySpecialStockType  -- association [0..1]
LEFT OUTER JOIN I_UnitOfMeasure AS _BaseUnit ON BaseUnit = _BaseUnit.UnitOfMeasure  -- association [0..1]
LEFT OUTER JOIN I_GoodsMovementType AS _GoodsMovementType ON GoodsMovementType = _GoodsMovementType.GoodsMovementType  -- association [0..1]
;