I_EWM_WaveStatusText
Warehouse Wave Status - Text
I_EWM_WaveStatusText is a Basic CDS View that provides data about "Warehouse Wave Status - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields WaveStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | Domain | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEWMWVSTATUST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Warehouse Wave Status - Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | WaveStatus | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #M | view |
@AbapCatalog.sqlViewName: 'IEWMWVSTATUST'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Warehouse Wave Status - Text'
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'WaveStatus'
@VDM.viewType:#BASIC
@ObjectModel.usageType: {serviceQuality: #A,
dataClass: #CUSTOMIZING,
sizeCategory: #M}
//define view i_ewm_wavestatustext
define view I_EWM_WaveStatusText
as select from dd07t as Domain
{
@EndUserText.label: 'Warehouse Wave Status'
@ObjectModel.text.element: 'WaveStatusName'
key Domain.domvalue_l as WaveStatus,
@Semantics.language: true
key Domain.ddlanguage as Language,
@EndUserText.label: 'Warehouse Wave Status Name'
@Semantics.text: true
@Search.defaultSearchElement: true
Domain.ddtext as WaveStatusName
}
where
Domain.as4local = 'A'
and Domain.domname = '/SCWM/DO_STWAVE'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA