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

I_MaintItmObjListLogisticsOrd

DDL: I_MAINTITMOBJLISTLOGISTICSORD SQL: IMIOLNOLOGORD Type: view BASIC

Maintenance Item Object List Logistics Order

I_MaintItmObjListLogisticsOrd is a Basic CDS View that provides data about "Maintenance Item Object List Logistics Order" in SAP S/4HANA. It reads from 1 data source (ser05) and exposes 8 fields with key field MaintenanceItemObjectList. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
ser05 ser05 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_LogisticsOrder _LogisticsOrder $projection.LogisticsOrder = _LogisticsOrder.OrderID
[0..1] I_OrderItem _LogisticsOrderItem $projection.LogisticsOrder = _LogisticsOrderItem.OrderID and $projection.OrderItem = _LogisticsOrderItem.OrderItem

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMIOLNOLOGORD view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Maintenance Item Object List Logistics Order 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_MaintObjListLogisticsOrder view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceItemObjectList obknr Object list
LogisticsOrder ppaufnr Order
OrderItem ppposnr Item Number
OrderCategory ppautyp Order category
OrderIsRefurbishmentOrder pmrsord Refurbishment
DocumentDate datum Valid to
_LogisticsOrder _LogisticsOrder
_LogisticsOrderItem _LogisticsOrderItem

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_MaintItmObjListLogisticsOrd.
-- 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: IMIOLNOLOGORD

CREATE VIEW I_MaintItmObjListLogisticsOrd AS
SELECT
  obknr AS MaintenanceItemObjectList,
  ppaufnr AS LogisticsOrder,
  ppposnr AS OrderItem,
  ppautyp AS OrderCategory,
  pmrsord AS OrderIsRefurbishmentOrder,
  datum AS DocumentDate
FROM ser05
LEFT OUTER JOIN I_LogisticsOrder AS _LogisticsOrder ON LogisticsOrder = _LogisticsOrder.OrderID  -- association [0..1]
LEFT OUTER JOIN I_OrderItem AS _LogisticsOrderItem ON LogisticsOrder = _LogisticsOrderItem.OrderID AND OrderItem = _LogisticsOrderItem.OrderItem  -- association [0..1]
;