I_MaintOrderQueryNode

DDL: I_MAINTORDERQUERYNODE SQL: IMAINTORDQRYNODE Type: view BASIC

Cloud Printing - Query Node Maintenance Order

I_MaintOrderQueryNode is a Basic CDS View that provides data about "Cloud Printing - Query Node Maintenance Order" in SAP S/4HANA. It reads from 1 data source (I_LogisticsOrder) and exposes 2 fields with key field MaintenanceOrder. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_LogisticsOrder I_LogisticsOrder from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaintenanceOrder _MaintenanceOrder _MaintenanceOrder.MaintenanceOrder = $projection.MaintenanceOrder

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTORDQRYNODE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Cloud Printing - Query Node Maintenance Order view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceOrder OrderID Order ID
_MaintenanceOrder _MaintenanceOrder

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_MaintOrderQueryNode.
-- 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: IMAINTORDQRYNODE

CREATE VIEW I_MaintOrderQueryNode AS
SELECT
  OrderID AS MaintenanceOrder
FROM I_LogisticsOrder
LEFT OUTER JOIN I_MaintenanceOrder AS _MaintenanceOrder ON _MaintenanceOrder.MaintenanceOrder = MaintenanceOrder  -- association [0..1]
;