I_SupDmndOpenDelivery
Basic View for Deliveries
I_SupDmndOpenDelivery is a Basic CDS View that provides data about "Basic View for Deliveries" in SAP S/4HANA. It reads from 1 data source (vbbe) and exposes 7 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vbbe | vbbe | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Basic View for Deliveries | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.sqlViewName | ISUPDMNDDLV | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| DeliveryDocument | vbeln | |||
| DeliveryDocumentItem | posnr | |||
| ProductAvailabilityDate | mbdat | |||
| RequestedDeliveryDate | mbdat | |||
| DeliveredQuantityInBaseUnit | omeng | |||
| Material | matnr | |||
| Plant | werks |
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Basic View for Deliveries'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@AbapCatalog: {
sqlViewName: 'ISUPDMNDDLV',
compiler.compareFilter: true
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #X,
sizeCategory: #XXL
}
}
define view I_SupDmndOpenDelivery
as select from vbbe
{
vbeln as DeliveryDocument,
posnr as DeliveryDocumentItem,
mbdat as ProductAvailabilityDate,
mbdat as RequestedDeliveryDate,
omeng as DeliveredQuantityInBaseUnit,
matnr as Material,
werks as Plant
}
where
vbtyp = 'J'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"VBBE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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