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

I_MaintItmObjListDeliveryDoc

DDL: I_MAINTITMOBJLISTDELIVERYDOC SQL: IMIOLNODLVDOC Type: view BASIC

Maintenance Item Object List Delivery Document

I_MaintItmObjListDeliveryDoc is a Basic CDS View that provides data about "Maintenance Item Object List Delivery Document" 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
[0..1] I_DeliveryDocument _DeliveryDocument $projection.DeliveryDocument = _DeliveryDocument.DeliveryDocument
[0..1] I_DeliveryDocumentItem _DeliveryDocumentItem $projection.DeliveryDocument = _DeliveryDocumentItem.DeliveryDocument and $projection.DeliveryDocumentItem = _DeliveryDocumentItem.DeliveryDocumentItem

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMIOLNODLVDOC view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Maintenance Item Object List Delivery Document 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_MaintObjListDeliveryDocument 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_MaintItmObjListDeliveryDoc.
-- 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: IMIOLNODLVDOC

CREATE VIEW I_MaintItmObjListDeliveryDoc 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 [0..1]
LEFT OUTER JOIN I_DeliveryDocumentItem AS _DeliveryDocumentItem ON DeliveryDocument = _DeliveryDocumentItem.DeliveryDocument AND DeliveryDocumentItem = _DeliveryDocumentItem.DeliveryDocumentItem  -- association [0..1]
;