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

I_SerialNmbrDelivery

DDL: I_SERIALNMBRDELIVERY SQL: ISERNODLV Type: view BASIC

Serial number delivery

I_SerialNmbrDelivery is a Basic CDS View that provides data about "Serial number delivery" in SAP S/4HANA. It reads from 1 data source (ser01) and exposes 7 fields with key field MaintenanceItemObjectList. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
ser01 ser01 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_DeliveryDocument _DeliveryDocument $projection.DeliveryDocument = _DeliveryDocument.DeliveryDocument
[1..1] I_DeliveryDocumentItem _DeliveryDocumentItem $projection.DeliveryDocument = _DeliveryDocumentItem.DeliveryDocument and $projection.DeliveryDocumentItem = _DeliveryDocumentItem.DeliveryDocumentItem

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISERNODLV view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Serial number delivery view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_MaintItmObjListDeliveryDoc view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceItemObjectList obknr Object list
DeliveryDocument lief_nr Delivery
DeliveryDocumentItem posnr WBS Element
SDDocumentCategory vbtyp TSW Det.Doc typ
DeliveryDate datum Valid to
_DeliveryDocument _DeliveryDocument
_DeliveryDocumentItem _DeliveryDocumentItem

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_SerialNmbrDelivery.
-- 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: ISERNODLV

CREATE VIEW I_SerialNmbrDelivery AS
SELECT
  obknr AS MaintenanceItemObjectList,
  lief_nr AS DeliveryDocument,
  posnr AS DeliveryDocumentItem,
  vbtyp AS SDDocumentCategory,
  datum AS DeliveryDate
FROM ser01
LEFT OUTER JOIN I_DeliveryDocument AS _DeliveryDocument ON DeliveryDocument = _DeliveryDocument.DeliveryDocument  -- association [1..1]
LEFT OUTER JOIN I_DeliveryDocumentItem AS _DeliveryDocumentItem ON DeliveryDocument = _DeliveryDocumentItem.DeliveryDocument AND DeliveryDocumentItem = _DeliveryDocumentItem.DeliveryDocumentItem  -- association [1..1]
;