I_SupDmndInboundDelivBasic
Basic View for Confirmations
I_SupDmndInboundDelivBasic is a Basic CDS View that provides data about "Basic View for Confirmations" in SAP S/4HANA. It reads from 1 data source (ekes) and exposes 9 fields with key fields PurchasingDocument, PurchasingDocumentItem, SequentialNmbrOfSuplrConf.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ekes | sched | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Basic View for Confirmations | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.sqlViewName | ISUPDMNDIBD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchasingDocument | ekes | ebeln | |
| KEY | PurchasingDocumentItem | ekes | ebelp | |
| KEY | SequentialNmbrOfSuplrConf | ekes | etens | |
| ScheduleLineOrderQuantity | ekes | menge | ||
| ScheduleLineDeliveryDate | ekes | eindt | ||
| RoughGoodsReceiptQty | ekes | dabmg | ||
| OpenSupplyQuantity | ||||
| DeliveryDocument | vbeln | |||
| StockSegment | sgt_scat |
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Basic View for Confirmations'
@VDM: {
viewType: #BASIC
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@AbapCatalog: {
sqlViewName: 'ISUPDMNDIBD',
compiler.compareFilter: true
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #X,
sizeCategory: #XXL
}
}
define view I_SupDmndInboundDelivBasic
as select from ekes as sched
{
key sched.ebeln as PurchasingDocument,
key sched.ebelp as PurchasingDocumentItem,
key sched.etens as SequentialNmbrOfSuplrConf ,
sched.menge as ScheduleLineOrderQuantity,
sched.eindt as ScheduleLineDeliveryDate,
sched.dabmg as RoughGoodsReceiptQty,
sched.menge - sched.dabmg as OpenSupplyQuantity,
vbeln as DeliveryDocument,
sgt_scat as StockSegment
}
where sched.kzdis = 'X'
and sched.dabmg < sched.menge
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