I_EWM_DeliveryStatus
Warehouse Delivery Status
I_EWM_DeliveryStatus is a Basic CDS View (Fact) that provides data about "Warehouse Delivery Status" in SAP S/4HANA. It reads from 1 data source (/scdl/db_status) and exposes 9 fields with key fields DeliveryUUID, DeliveryItemUUID, DeliveryStatusType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /scdl/db_status | /scdl/db_status | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEWMDELIVSTS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #FACT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| EndUserText.label | Warehouse Delivery Status | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DeliveryUUID | docid | ||
| KEY | DeliveryItemUUID | itemid | ||
| KEY | DeliveryStatusType | status_type | ||
| DeliveryCategory | doccat | |||
| EWMDeliveryDocumentCategory | doccat | |||
| Status | status_value | |||
| EWMDeliveryStatus | status_value | |||
| ValidityStartUTCDateTime | ||||
| ValidityEndUTCDateTime |
@AbapCatalog.sqlViewName: 'IEWMDELIVSTS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType:#BASIC
@Analytics: { dataCategory: #FACT }
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #XL
@EndUserText.label: 'Warehouse Delivery Status'
define view I_EWM_DeliveryStatus
as select from /scdl/db_status
{
key docid as DeliveryUUID,
key itemid as DeliveryItemUUID,
key status_type as DeliveryStatusType,
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'EWMDeliveryDocumentCategory'
doccat as DeliveryCategory,
doccat as EWMDeliveryDocumentCategory,
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'EWMDeliveryStatus'
status_value as Status,
status_value as EWMDeliveryStatus,
cast( tstfr as tzntstmps preserving type ) as ValidityStartUTCDateTime, //StatusStartUTCDateTime,//==>DeliveryStatusStartUTCDateTime//==>ValidityStartUTCDateTime
cast( tstto as tzntstmps preserving type ) as ValidityEndUTCDateTime //StatusEndUTCDateTime //==>DeliveryStatusEndUTCDateTime//==>ValidityEndUTCDateTime
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/SCDL/DB_STATUS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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