I_DeliveryDocumentItemVH

DDL: I_DELIVERYDOCUMENTITEMVH SQL: IDELIVDOCITMVH Type: view COMPOSITE

Delivery document items

I_DeliveryDocumentItemVH is a Composite CDS View that provides data about "Delivery document items" in SAP S/4HANA. It reads from 1 data source (I_DeliveryDocumentItem) and exposes 6 fields with key fields DeliveryDocument, DeliveryDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_DeliveryDocumentItem DeliveryDocumentItem from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IDELIVDOCITMVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Delivery document items view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view
ObjectModel.representativeKey DeliveryDocumentItem view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocument DeliveryDocument Outbound Delivery
KEY DeliveryDocumentItem DeliveryDocumentItem Outb. Delivery Item
DeliveryDocumentItemText DeliveryDocumentItemText
Material Material Vehicle Model
MaterialName
_DeliveryDocument _DeliveryDocument

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_DeliveryDocumentItemVH.
-- 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.
-- SQL view name: IDELIVDOCITMVH

CREATE VIEW I_DeliveryDocumentItemVH AS
SELECT
  DeliveryDocument,
  DeliveryDocumentItem,
  DeliveryDocumentItemText,
  Material,
  _Material._Text[ Language = $session.system_language ].MaterialName AS MaterialName
FROM I_DeliveryDocumentItem AS DeliveryDocumentItem
;