I_EWM_HandlingUnitStatus

DDL: I_EWM_HANDLINGUNITSTATUS Type: view_entity BASIC

Handling Unit Status

I_EWM_HandlingUnitStatus is a Basic CDS View that provides data about "Handling Unit Status" in SAP S/4HANA. It reads from 1 data source (/scwm/husstat) and exposes 3 fields with key fields HandlingUnitUUID, EWMHandlingUnitSystemStatus.

Data Sources (1)

SourceAliasJoin Type
/scwm/husstat /scwm/husstat from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Handling Unit Status view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY HandlingUnitUUID objnr Val. Obj. No.
KEY EWMHandlingUnitSystemStatus Status of Time-Dependent Document Linkage
EWMHUSystemStatusIsInactive TRUE

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_HandlingUnitStatus.
-- 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_HandlingUnitStatus AS
SELECT
  objnr AS HandlingUnitUUID,
  cast( stat as ewm_de_handling_unit_status preserving type ) AS EWMHandlingUnitSystemStatus,
  cast( inact as ewm_de_is_hu_status_inactive preserving type ) AS EWMHUSystemStatusIsInactive
FROM /scwm/husstat
;