Deprecated
This CDS view is deprecated in S/4HANA. Use I_EWM_DELIVERYREFERENCEDOC_2 instead. View all deprecated CDS views →

I_EWM_DeliveryReferenceDoc

DDL: I_EWM_DELIVERYREFERENCEDOC SQL: IEWMDLVREFDOC Type: view BASIC Package: VDM_EWM_DLV

EWM Delivery Reference Documents

I_EWM_DeliveryReferenceDoc is a Basic CDS View that provides data about "EWM Delivery Reference Documents" in SAP S/4HANA. It reads from 1 data source (/scdl/db_refdoc) and exposes 8 fields with key fields DeliveryUUID, DeliveryItemUUID, ReferenceDocumentCategory, ReferenceDocumentUUID, ReferenceDocumentItemUUID. Part of development package VDM_EWM_DLV.

Data Sources (1)

SourceAliasJoin Type
/scdl/db_refdoc /scdl/db_refdoc from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IEWMDLVREFDOC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label EWM Delivery Reference Documents view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_EWM_DELIVERYREFERENCEDOC_2 view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY DeliveryUUID docid Snapshot ID
KEY DeliveryItemUUID itemid Russia Statutory Reporting Report Land Tax, Run Item ID
KEY ReferenceDocumentCategory refdoccat Ref. Doc. Category
KEY ReferenceDocumentUUID refdocid Ref. Doc. ID
KEY ReferenceDocumentItemUUID refitemid Ref. Item ID
DeliveryCategory doccat Document Cat.
ReferenceDocumentNumber refdocno Reference Doc.
ReferenceDocumentItemNumber refitemno Ref. Item No.

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.
-- 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: IEWMDLVREFDOC

CREATE VIEW I_EWM_DeliveryReferenceDoc AS
SELECT
  docid AS DeliveryUUID,
  itemid AS DeliveryItemUUID,
  refdoccat AS ReferenceDocumentCategory,
  refdocid AS ReferenceDocumentUUID,
  refitemid AS ReferenceDocumentItemUUID,
  doccat AS DeliveryCategory,
  refdocno AS ReferenceDocumentNumber,
  refitemno AS ReferenceDocumentItemNumber
FROM /scdl/db_refdoc
;