I_SupDmndInboundDelivBasic

DDL: I_SUPDMNDINBOUNDDELIVBASIC Type: view BASIC

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)

SourceAliasJoin Type
ekes sched from

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument ekes ebeln Source PurchDoc
KEY PurchasingDocumentItem ekes ebelp Item pur. doc.
KEY SequentialNmbrOfSuplrConf ekes etens Sequential No.
ScheduleLineOrderQuantity ekes menge WarrCountValue
ScheduleLineDeliveryDate ekes eindt Initial Entry
RoughGoodsReceiptQty ekes dabmg Qty Reduced
OpenSupplyQuantity
DeliveryDocument vbeln SD Sched. Agmt
StockSegment sgt_scat Stock Segment

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_SupDmndInboundDelivBasic.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_SupDmndInboundDelivBasic AS
SELECT
  sched.ebeln AS PurchasingDocument,
  sched.ebelp AS PurchasingDocumentItem,
  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
FROM ekes AS sched
;