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

I_EWM_WhseTaskExceptionCode

DDL: I_EWM_WHSETASKEXCEPTIONCODE SQL: IEWMWHTEXCCODE Type: view BASIC

Warehouse task exception codes

I_EWM_WhseTaskExceptionCode is a Basic CDS View that provides data about "Warehouse task exception codes" in SAP S/4HANA. It reads from 1 data source (/scwm/ordim_e) and exposes 6 fields with key fields Warehouse, WarehouseTask, WarehouseTaskItem, WarehouseTaskExceptionCode, BusinessContext.

Data Sources (1)

SourceAliasJoin Type
/scwm/ordim_e /scwm/ordim_e from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IEWMWHTEXCCODE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
EndUserText.label Warehouse task exception codes view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_WhseTaskExceptionCode_2 view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Warehouse lgnum Whse Number
KEY WarehouseTask Warehouse Task
KEY WarehouseTaskItem WT Item
KEY WarehouseTaskExceptionCode exccode Exception Code
KEY BusinessContext buscon Bus. Context
KEY BusinessContextExecutionStep exec_step Exec. Step

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_WhseTaskExceptionCode.
-- 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: IEWMWHTEXCCODE

CREATE VIEW I_EWM_WhseTaskExceptionCode AS
SELECT
  lgnum AS Warehouse,
  cast( tanum as /scwm/tanum_noconv preserving type ) AS WarehouseTask,
  cast( tapos as /scwm/tapos_noconv preserving type ) AS WarehouseTaskItem,
  exccode AS WarehouseTaskExceptionCode,
  buscon AS BusinessContext,
  exec_step AS BusinessContextExecutionStep
FROM /scwm/ordim_e
;