I_SupDmndOvwOpenDeliveries

DDL: I_SUPDMNDOVWOPENDELIVERIES Type: view BASIC

Basic View for Open Deliveries

I_SupDmndOvwOpenDeliveries is a Basic CDS View that provides data about "Basic View for Open Deliveries" in SAP S/4HANA. It reads from 2 data sources (vbbe, marc) and exposes 7 fields.

Data Sources (2)

SourceAliasJoin Type
vbbe item from
marc marc inner

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Basic View for Open Deliveries view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName ISUPDMNDOVWDLV1 view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view

Fields (7)

KeyFieldSource TableSource FieldDescription
Material vbbe matnr Vehicle Model
Plant vbbe werks Receiving Plant
StorageLocation vbbe lgort Sublocation
Batch
MaterialBaseUnit vbbe meins Valuation Unit
InventorySpecialStockType vbbe sobkz Special Stock
DeliveredQuantity

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_SupDmndOvwOpenDeliveries.
-- 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_SupDmndOvwOpenDeliveries AS
SELECT
  item.matnr AS Material,
  item.werks AS Plant,
  item.lgort AS StorageLocation,
  case when marc.arun_fix_batch <> '1' then '' else item.charg end AS Batch,
  item.meins AS MaterialBaseUnit,
  item.sobkz AS InventorySpecialStockType,
  sum( omeng ) AS DeliveredQuantity
FROM vbbe AS item
INNER JOIN marc ON /* join condition not captured in parsed metadata */
;