I_EWM_WhseTaskWhseReqItem

DDL: I_EWM_WHSETASKWHSEREQITEM Type: view_entity BASIC

Delivery Item with Warehouse task

I_EWM_WhseTaskWhseReqItem is a Basic CDS View that provides data about "Delivery Item with Warehouse task" in SAP S/4HANA. It reads from 1 data source (/scwm/db_itemwt) and exposes 6 fields with key fields EWMWarehouseRequestUUID, EWMWarehouseRequestItemUUID, WarehouseTask.

Data Sources (1)

SourceAliasJoin Type
/scwm/db_itemwt /scwm/db_itemwt from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Delivery Item with Warehouse task view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouseRequestUUID docid Snapshot ID
KEY EWMWarehouseRequestItemUUID itemid Russia Statutory Reporting Report Land Tax, Run Item ID
KEY WarehouseTask Warehouse Task
EWMDocumentCategory doccat Document Cat.
EWMWarehouse lgnum Whse Number
IsHandlingUnitWarehouseTask flghuto HU Whse Task

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_WhseTaskWhseReqItem.
-- 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_WhseTaskWhseReqItem AS
SELECT
  docid AS EWMWarehouseRequestUUID,
  itemid AS EWMWarehouseRequestItemUUID,
  cast ( tanum as /scwm/tanum_conv_alpha preserving type ) AS WarehouseTask,
  doccat AS EWMDocumentCategory,
  lgnum AS EWMWarehouse,
  flghuto AS IsHandlingUnitWarehouseTask
FROM /scwm/db_itemwt
;