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

I_MaintItmObjListInspectionLot

DDL: I_MAINTITMOBJLISTINSPECTIONLOT SQL: IMIOLNOINSLOT Type: view BASIC

Maintenance Item Object List Inspection Lot

I_MaintItmObjListInspectionLot is a Basic CDS View that provides data about "Maintenance Item Object List Inspection Lot" in SAP S/4HANA. It reads from 1 data source (ser04) and exposes 4 fields with key field MaintenanceItemObjectList. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ser04 ser04 from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_InspectionLot _InspectionLot $projection.InspectionLot = _InspectionLot.InspectionLot

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMIOLNOINSLOT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Maintenance Item Object List Inspection Lot view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_MaintObjListInspectionLot view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceItemObjectList obknr Object list
InspectionLot prueflos Inspection Lot
DocumentDate datum Valid to
_InspectionLot _InspectionLot

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_MaintItmObjListInspectionLot.
-- 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: IMIOLNOINSLOT

CREATE VIEW I_MaintItmObjListInspectionLot AS
SELECT
  obknr AS MaintenanceItemObjectList,
  prueflos AS InspectionLot,
  datum AS DocumentDate
FROM ser04
LEFT OUTER JOIN I_InspectionLot AS _InspectionLot ON InspectionLot = _InspectionLot.InspectionLot  -- association [0..1]
;