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

I_EWM_WaveTypeText

DDL: I_EWM_WAVETYPETEXT SQL: IEWMWVTYPET Type: view BASIC

Warehouse Wave Type - Text

I_EWM_WaveTypeText is a Basic CDS View that provides data about "Warehouse Wave Type - Text" in SAP S/4HANA. It reads from 1 data source (/scwm/twavetypet) and exposes 4 fields with key fields Language, Warehouse, WaveType.

Data Sources (1)

SourceAliasJoin Type
/scwm/twavetypet WaveTypeText from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IEWMWVTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Warehouse Wave Type - Text view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_WaveTypeText_2 view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY Warehouse lgnum Whse Number
KEY WaveType wave_type Wave Type
WaveTypeName text User Group

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_WaveTypeText.
-- 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: IEWMWVTYPET

CREATE VIEW I_EWM_WaveTypeText AS
SELECT
  langu AS Language,
  lgnum AS Warehouse,
  wave_type AS WaveType,
  text AS WaveTypeName
FROM /scwm/twavetypet AS WaveTypeText
;