I_WasteDeliveryNoteStatus
Waste Delivery Note Status
I_WasteDeliveryNoteStatus is a Composite CDS View that provides data about "Waste Delivery Note Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 1 field.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | Domain | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Waste Delivery Note Status | view | |
| AbapCatalog.sqlViewName | IWSTDLVRNST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.representativeKey | WasteDeliveryNoteDocStatus | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| WasteDeliveryNoteDocStatusName | DomainText | ddtext |
@EndUserText.label: 'Waste Delivery Note Status'
@AbapCatalog:
{
sqlViewName: 'IWSTDLVRNST',
compiler.compareFilter: true,
preserveKey:true
}
@AccessControl:
{
authorizationCheck: #NOT_REQUIRED
}
@VDM.viewType: #COMPOSITE
@ObjectModel:
{
usageType:
{
dataClass: #MIXED,
sizeCategory: #S,
serviceQuality: #C
},
resultSet.sizeCategory:#XS,
representativeKey: 'WasteDeliveryNoteDocStatus'
}
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_WasteDeliveryNoteStatus
as select from dd07l as Domain
left outer to one join dd07t as DomainText on Domain.domname = DomainText.domname
and Domain.domvalue_l = DomainText.domvalue_l
and DomainText.ddlanguage = $session.system_language
{
key cast ( case when Domain.domvalue_l = '1' then 1
when Domain.domvalue_l = '3' then 3
when Domain.domvalue_l = '0' then 0 end as ehewa_wdn_status) as WasteDeliveryNoteDocStatus,
@Semantics.text: true
DomainText.ddtext as WasteDeliveryNoteDocStatusName
}
where
Domain.domname = 'EHEWA_WDN_STATUS'
and Domain.as4local = 'A'
and DomainText.domname = 'EHEWA_WDN_STATUS'
and DomainText.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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