I_EWM_HandlingUnitRef_2

DDL: I_EWM_HANDLINGUNITREF_2 Type: view_entity BASIC

Handling Unit Reference

I_EWM_HandlingUnitRef_2 is a Basic CDS View that provides data about "Handling Unit Reference" in SAP S/4HANA. It reads from 1 data source (/scwm/huref) and exposes 4 fields with key fields HandlingUnitUUID, EWMDeliveryDocumentCategory, EWMWarehouseRequestUUID.

Data Sources (1)

SourceAliasJoin Type
/scwm/huref huref from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Handling Unit Reference view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY HandlingUnitUUID guid_hu Parent
KEY EWMDeliveryDocumentCategory doccat Document Cat.
KEY EWMWarehouseRequestUUID docid Snapshot ID
GoodsIssueStatus gi

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_HandlingUnitRef_2.
-- 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_EWM_HandlingUnitRef_2 AS
SELECT
  guid_hu AS HandlingUnitUUID,
  doccat AS EWMDeliveryDocumentCategory,
  docid AS EWMWarehouseRequestUUID,
  gi AS GoodsIssueStatus
FROM /scwm/huref AS huref
;