C_MaintOrderUnplannedMat

DDL: C_MAINTORDERUNPLANNEDMAT SQL: CMAINTORDUNPLMAT Type: view CONSUMPTION

Maintenance Order Unplanned material

C_MaintOrderUnplannedMat is a Consumption CDS View that provides data about "Maintenance Order Unplanned material" in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentRecord) and exposes 14 fields with key fields MaterialDocument, MaterialDocumentItem, MaterialDocumentYear. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_MaterialDocumentRecord I_MaterialDocumentRecord from

Associations (1)

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

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CMAINTORDUNPLMAT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label Maintenance Order Unplanned material view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY MaterialDocument I_MaterialDocumentRecord MaterialDocument Material Doc.
KEY MaterialDocumentItem I_MaterialDocumentRecord MaterialDocumentItem Material Document Item
KEY MaterialDocumentYear I_MaterialDocumentRecord MaterialDocumentYear Material Document Year
Material I_MaterialDocumentRecord Material Vehicle Model
StockIdentifyingMaterial I_MaterialDocumentRecord StockIdentifyingMaterial Stock Mat.
WBSElementInternalID I_MaterialDocumentRecord WBSElementInternalID WBS Internal ID
GoodsMovementType I_MaterialDocumentRecord GoodsMovementType Movement Type
QuantityInBaseUnit I_MaterialDocumentRecord QuantityInBaseUnit Quantity
MaterialBaseUnit I_MaterialDocumentRecord MaterialBaseUnit Valuation Unit
MaintenanceOrder I_MaterialDocumentRecord OrderID Order ID
Reservation I_MaterialDocumentRecord Reservation Reservation
_Material I_MaterialDocumentRecord _Material
_MaterialBaseUnit I_MaterialDocumentRecord _MaterialBaseUnit
ForDCL_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 C_MaintOrderUnplannedMat.
-- 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: CMAINTORDUNPLMAT

CREATE VIEW C_MaintOrderUnplannedMat AS
SELECT
  I_MaterialDocumentRecord.MaterialDocument AS MaterialDocument,
  I_MaterialDocumentRecord.MaterialDocumentItem AS MaterialDocumentItem,
  I_MaterialDocumentRecord.MaterialDocumentYear AS MaterialDocumentYear,
  I_MaterialDocumentRecord.Material AS Material,
  I_MaterialDocumentRecord.StockIdentifyingMaterial AS StockIdentifyingMaterial,
  I_MaterialDocumentRecord.WBSElementInternalID AS WBSElementInternalID,
  I_MaterialDocumentRecord.GoodsMovementType AS GoodsMovementType,
  I_MaterialDocumentRecord.QuantityInBaseUnit AS QuantityInBaseUnit,
  I_MaterialDocumentRecord.MaterialBaseUnit AS MaterialBaseUnit,
  I_MaterialDocumentRecord.OrderID AS MaintenanceOrder,
  I_MaterialDocumentRecord.Reservation AS Reservation,
  I_MaterialDocumentRecord._Material AS _Material,
  I_MaterialDocumentRecord._MaterialBaseUnit AS _MaterialBaseUnit
FROM I_MaterialDocumentRecord
LEFT OUTER JOIN I_MaintenanceOrder AS _MaintenanceOrder ON _MaintenanceOrder.MaintenanceOrder = MaintenanceOrder  -- association [0..1]
;