I_EWM_DeliveryReferenceDoc_2

DDL: I_EWM_DELIVERYREFERENCEDOC_2 Type: view_entity COMPOSITE

Delivery Reference Document

I_EWM_DeliveryReferenceDoc_2 is a Composite CDS View that provides data about "Delivery Reference Document" in SAP S/4HANA. It reads from 1 data source (I_EWM_WarehouseRequestRefDoc) and exposes 9 fields with key fields DeliveryUUID, DeliveryItemUUID, EWMReferenceDocumentCategory, ReferenceDocumentUUID, ReferenceDocumentItemUUID.

Data Sources (1)

SourceAliasJoin Type
I_EWM_WarehouseRequestRefDoc I_EWM_WarehouseRequestRefDoc from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Delivery Reference Document view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY DeliveryUUID EWMWarehouseRequestUUID Snapshot ID
KEY DeliveryItemUUID EWMWarehouseRequestItemUUID Russia Statutory Reporting Report Land Tax, Run Item ID
KEY EWMReferenceDocumentCategory EWMReferenceDocumentCategory Ref. Doc. Category
KEY ReferenceDocumentUUID ReferenceDocumentUUID NodeID
KEY ReferenceDocumentItemUUID ReferenceDocumentItemUUID Ref. Item ID
EWMDeliveryDocumentCategory EWMWhseRequestDocumentCategory Document Cat.
EWMRefDeliveryDocumentNumber EWMWhseReqRefDocumentNumber Reference Doc.
EWMRefDeliveryDocumentItem EWMWhseRequestRefDocumentItem Ref. Item No.
BusinessSystemName BusinessSystemName Business System

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_EWM_DeliveryReferenceDoc_2.
-- 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_EWM_DeliveryReferenceDoc_2 AS
SELECT
  EWMWarehouseRequestUUID AS DeliveryUUID,
  EWMWarehouseRequestItemUUID AS DeliveryItemUUID,
  EWMReferenceDocumentCategory,
  ReferenceDocumentUUID,
  ReferenceDocumentItemUUID,
  EWMWhseRequestDocumentCategory AS EWMDeliveryDocumentCategory,
  EWMWhseReqRefDocumentNumber AS EWMRefDeliveryDocumentNumber,
  EWMWhseRequestRefDocumentItem AS EWMRefDeliveryDocumentItem,
  BusinessSystemName
FROM I_EWM_WarehouseRequestRefDoc
;