Deprecated
This CDS view is deprecated in S/4HANA. Use I_EWM_WaveItem_2 instead. View all deprecated CDS views →

I_EWM_WaveItem

DDL: I_EWM_WAVEITEM SQL: IEWMWAVEITEM Type: view BASIC

EWM Wave Item

I_EWM_WaveItem is a Basic CDS View that provides data about "EWM Wave Item" in SAP S/4HANA. It reads from 1 data source (/scwm/waveitm) and exposes 30 fields with key fields Warehouse, Wave, WaveItem. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/scwm/waveitm /scwm/waveitm from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Product _Material $projection.Product = _Material.Product and _Material.ProdSupChnMgmtUUID22 is not initial

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IEWMWAVEITEM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label EWM Wave Item view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_WaveItem_2 view

Fields (30)

KeyFieldSource TableSource FieldDescription
KEY Warehouse lgnum Whse Number
KEY Wave Wave
KEY WaveItem Wave Item
WarehouseTaskCreationStatus stat_cr WT Creation
ItemWeight weight Weight Used
ItemWeightUnit unit_w Weight Unit
ItemVolume volum Volume
ItemVolumeUnit unit_v Volume Unit
WaveItemConsumedCapacityValue capa Capacity Usage
ShipToParty shipto Ship-to Party
Product matnr Vehicle Model
Batch charg Chargeable Proc.
StockOwner owner Vehicle Owner
EntitledToDisposeParty entitled Party Ent. to Disp.
ItemQuantity quan Quantity
ItemQuantityUnit unit UoM
TranspUnitInternalNumber tu_num Internal TU No.
ReferenceDocumentUUID rdocid Document ID
ReferenceDocumentItemUUID ritmid Item
SplitNumber split_id WM Split Number
ReferenceDocumentNumber Number
ReferenceDocumentItemNumber itemno Sequence number
TwoStepPickingWaveItemCategory type_2st Cat.Two-Step
WaveItemErrorStatus wv_error Error Status
Route route_id Route ID
SalesOrder refdocno_so Sales Order
ActivityArea aarea Activity Area
WarehouseProcessType procty Whse Proc. Type
WaveItemSimulationStatus sim_status_itm Wave Item Sim. Sts
_Material _Material

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_EWM_WaveItem.
-- 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: IEWMWAVEITEM

CREATE VIEW I_EWM_WaveItem AS
SELECT
  lgnum AS Warehouse,
  cast( wave as numc10 preserving type) AS Wave,
  cast( wave_itm as numc06 preserving type) AS WaveItem,
  stat_cr AS WarehouseTaskCreationStatus,
  weight AS ItemWeight,
  unit_w AS ItemWeightUnit,
  volum AS ItemVolume,
  unit_v AS ItemVolumeUnit,
  capa AS WaveItemConsumedCapacityValue,
  shipto AS ShipToParty,
  matnr AS Product,
  charg AS Batch,
  owner AS StockOwner,
  entitled AS EntitledToDisposeParty,
  quan AS ItemQuantity,
  unit AS ItemQuantityUnit,
  tu_num AS TranspUnitInternalNumber,
  rdocid AS ReferenceDocumentUUID,
  ritmid AS ReferenceDocumentItemUUID,
  split_id AS SplitNumber,
  cast( docno as abap.char( 35 )) AS ReferenceDocumentNumber,
  itemno AS ReferenceDocumentItemNumber,
  type_2st AS TwoStepPickingWaveItemCategory,
  wv_error AS WaveItemErrorStatus,
  route_id AS Route,
  refdocno_so AS SalesOrder,
  aarea AS ActivityArea,
  procty AS WarehouseProcessType,
  sim_status_itm AS WaveItemSimulationStatus
FROM /scwm/waveitm
LEFT OUTER JOIN I_Product AS _Material ON Product = _Material.Product AND _Material.ProdSupChnMgmtUUID22 is not initial  -- association [0..1]
;