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

I_SerialNmbrProdnOrder

DDL: I_SERIALNMBRPRODNORDER SQL: ISERNOPRODORD Type: view BASIC

Serial number production order

I_SerialNmbrProdnOrder is a Basic CDS View that provides data about "Serial number production order" in SAP S/4HANA. It reads from 1 data source (ser05) and exposes 6 fields with key field MaintenanceItemObjectList. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
ser05 ser05 from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_OrderItem _OrderItem $projection.ProductionOrder = _OrderItem.OrderID and $projection.OrderItem = _OrderItem.OrderItem

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISERNOPRODORD view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Serial number production 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_MaintItmObjListLogisticsOrd view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceItemObjectList obknr Object list
ProductionOrder ppaufnr Order
OrderItem ppposnr Item Number
OrderIsRefurbishmentOrder pmrsord Refurbishment
DocumentDate datum Valid to
_OrderItem _OrderItem

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_SerialNmbrProdnOrder.
-- 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: ISERNOPRODORD

CREATE VIEW I_SerialNmbrProdnOrder AS
SELECT
  obknr AS MaintenanceItemObjectList,
  ppaufnr AS ProductionOrder,
  ppposnr AS OrderItem,
  pmrsord AS OrderIsRefurbishmentOrder,
  datum AS DocumentDate
FROM ser05
LEFT OUTER JOIN I_OrderItem AS _OrderItem ON ProductionOrder = _OrderItem.OrderID AND OrderItem = _OrderItem.OrderItem  -- association [0..1]
;