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

I_EWM_WaveType_2

DDL: I_EWM_WAVETYPE_2 Type: view_entity BASIC Package: VDM_EWM_CORE

Warehouse Wave Type

I_EWM_WaveType_2 (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Supply Chain

I_EWM_WaveType_2 is a Basic CDS View (Dimension) that provides data about "Warehouse Wave Type" in SAP S/4HANA. It reads from 1 data source (/scwm/twavetype) and exposes 4 fields with key fields EWMWarehouse, WaveType. It has 2 associations to related views. Part of development package VDM_EWM_CORE.

SAP Help Documentation

CategoryCDS Views for Goods Issue
Data CategoryDimension
Purpose
This CDS view provides information about wave types in your warehouse. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations There are no authorization objects required for this CDS view.

Structure
Further important fields Important fields in this view include the following: Field Name Description Measure or Attribute EWMWarehouse Warehouse Attribute WaveType Wave Type Attribute

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateDeprecated
Line of BusinessSupply Chain
Application ComponentSCM-EWM-WOP-2CL
CapabilitiesAnalytical Dimension,Data Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Not Released
PackageSupply Chain for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view retrieves the type of a credit memo request.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
/scwm/twavetype /scwm/twavetype from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_EWM_WarehouseNumber_2 _Warehouse $projection.EWMWarehouse = _Warehouse.EWMWarehouse
[0..*] I_EWM_WaveTypeText_2 _WaveTypeText $projection.EWMWarehouse = _WaveTypeText.EWMWarehouse and $projection.WaveType = _WaveTypeText.WaveType

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Warehouse Wave Type view
VDM.viewType #BASIC view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_WaveType_3 view
ObjectModel.representativeKey WaveType view
Analytics.dataCategory #DIMENSION view
Analytics.technicalName IEWMWAVETYPE2 view
Analytics.internalName #LOCAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse lgnum Warehouse Number/Warehouse Complex
_Warehouse _Warehouse
KEY WaveType wave_type Wave Type
_WaveTypeText _WaveTypeText

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_WaveType_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_WaveType_2 AS
SELECT
  lgnum AS EWMWarehouse,
  wave_type AS WaveType
FROM /scwm/twavetype
LEFT OUTER JOIN I_EWM_WarehouseNumber_2 AS _Warehouse ON EWMWarehouse = _Warehouse.EWMWarehouse  -- association [0..1]
LEFT OUTER JOIN I_EWM_WaveTypeText_2 AS _WaveTypeText ON EWMWarehouse = _WaveTypeText.EWMWarehouse AND WaveType = _WaveTypeText.WaveType  -- association [0..*]
;