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

I_EWM_WhseOrderHndlgUnit

DDL: I_EWM_WHSEORDERHNDLGUNIT SQL: IEWMWHOHU Type: view BASIC

EWM Warehouse Order Handling Unit

I_EWM_WhseOrderHndlgUnit is a Basic CDS View that provides data about "EWM Warehouse Order Handling Unit" in SAP S/4HANA. It reads from 2 data sources (I_Product, /scwm/whohu) and exposes 20 fields with key fields Client, Warehouse, WarehouseOrder, HndlgUnitNumberInWhseOrder.

Data Sources (2)

SourceAliasJoin Type
I_Product material left_outer
/scwm/whohu whohu from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IEWMWHOHU view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
EndUserText.label EWM Warehouse Order Handling Unit view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_WhseOrderHndlgUnit_2 view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY Client /scwm/whohu mandt Editing Client
KEY Warehouse lgnum Whse Number
KEY WarehouseOrder Warehouse Order
KEY HndlgUnitNumberInWhseOrder hukng HU Ident.
PackagingMaterialUUID pmat_guid Product
PackagingMaterial I_Product Product Product Sold
Language
PackagingMaterialDescription
HandlingUnitUUID huid Int. HU ID
HandlingUnitNumber huident HU ID
HndlgUnitIsShippingHndlgUnit shiphu Shipping HU
HndlgUnitIsCreatedByWhseOrder flgwcr HU Created
StorageProcess prces Storage Process
ConsolidationGroup dstgrp Cons.Grp
StorageType wstyp Storage Type
StorageSection wssec Storage Section
StorageBin wsbin Storage Bin
WarehouseOrderCreationRule wcr WO Creatn Rule
HndlgUnitIsUsedInWhseOrder used
PlannedShippingHndlgUnitUUID pohu_guid HU GUID

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_WhseOrderHndlgUnit.
-- 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: IEWMWHOHU

CREATE VIEW I_EWM_WhseOrderHndlgUnit AS
SELECT
  whohu.mandt AS Client,
  lgnum AS Warehouse,
  cast ( who as /scwm/de_who_conv_alpha preserving type ) AS WarehouseOrder,
  hukng AS HndlgUnitNumberInWhseOrder,
  pmat_guid AS PackagingMaterialUUID,
  material.Product AS PackagingMaterial,
  material._Text.Language AS Language,
  material._Text.ProductName AS PackagingMaterialDescription,
  huid AS HandlingUnitUUID,
  huident AS HandlingUnitNumber,
  shiphu AS HndlgUnitIsShippingHndlgUnit,
  flgwcr AS HndlgUnitIsCreatedByWhseOrder,
  prces AS StorageProcess,
  dstgrp AS ConsolidationGroup,
  wstyp AS StorageType,
  wssec AS StorageSection,
  wsbin AS StorageBin,
  wcr AS WarehouseOrderCreationRule,
  used AS HndlgUnitIsUsedInWhseOrder,
  pohu_guid AS PlannedShippingHndlgUnitUUID
FROM /scwm/whohu AS whohu
LEFT OUTER JOIN I_Product AS material ON /* join condition not captured in parsed metadata */
;