I_MaintOrdConfGoodsMovementTP

DDL: I_MAINTORDCONFGOODSMOVEMENTTP SQL: IMAINTORDCNFGMTP Type: view TRANSACTIONAL Package: ODATA_EAM_ORD_CONF_MAN

Maintenance Order Confirmation Goods Movement

I_MaintOrdConfGoodsMovementTP is a Transactional CDS View that provides data about "Maintenance Order Confirmation Goods Movement" in SAP S/4HANA. It reads from 1 data source (I_MaintOrderConfGoodsMovement) and exposes 12 fields with key fields MaintOrderConf, MaintOrderConfCntrValue, MaterialDocument, MaterialDocumentYear, MaterialDocumentItem. It has 1 association to related views. Part of development package ODATA_EAM_ORD_CONF_MAN.

Data Sources (1)

SourceAliasJoin Type
I_MaintOrderConfGoodsMovement Document from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MaintenanceOrderConfTP _MaintenanceOrderConfTP _MaintenanceOrderConfTP.MaintOrderConf = $projection.MaintOrderConf and _MaintenanceOrderConfTP.MaintOrderConfCntrValue = $projection.MaintOrderConfCntrValue

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMAINTORDCNFGMTP view
EndUserText.label Maintenance Order Confirmation Goods Movement view
ObjectModel.writeDraftPersistence MAINTORDCONFGM_D view
VDM.viewType #TRANSACTIONAL view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.draftEnabled true view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY MaintOrderConf I_MaintOrderConfGoodsMovement MaintOrderConf Return Agmt
KEY MaintOrderConfCntrValue I_MaintOrderConfGoodsMovement MaintOrderConfCntrValue Counter
KEY MaterialDocument I_MaintOrderConfGoodsMovement MaterialDocument Material Doc.
KEY MaterialDocumentYear I_MaintOrderConfGoodsMovement MaterialDocumentYear Material Document Year
KEY MaterialDocumentItem I_MaintOrderConfGoodsMovement MaterialDocumentItem Material Document Item
Material I_MaintOrderConfGoodsMovement Material Vehicle Model
GoodsMovementType I_MaintOrderConfGoodsMovement GoodsMovementType Movement Type
QuantityInBaseUnit I_MaintOrderConfGoodsMovement QuantityInBaseUnit Quantity
MaterialBaseUnit I_MaintOrderConfGoodsMovement MaterialBaseUnit Valuation Unit
Reservation I_MaintOrderConfGoodsMovement Reservation Reservation
ReservationItem I_MaintOrderConfGoodsMovement ReservationItem Reservation Item
_MaintenanceOrderConfTP _MaintenanceOrderConfTP

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_MaintOrdConfGoodsMovementTP.
-- 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: IMAINTORDCNFGMTP

CREATE VIEW I_MaintOrdConfGoodsMovementTP AS
SELECT
  Document.MaintOrderConf AS MaintOrderConf,
  Document.MaintOrderConfCntrValue AS MaintOrderConfCntrValue,
  Document.MaterialDocument AS MaterialDocument,
  Document.MaterialDocumentYear AS MaterialDocumentYear,
  Document.MaterialDocumentItem AS MaterialDocumentItem,
  Document.Material AS Material,
  Document.GoodsMovementType AS GoodsMovementType,
  Document.QuantityInBaseUnit AS QuantityInBaseUnit,
  Document.MaterialBaseUnit AS MaterialBaseUnit,
  Document.Reservation AS Reservation,
  Document.ReservationItem AS ReservationItem
FROM I_MaintOrderConfGoodsMovement AS Document
LEFT OUTER JOIN I_MaintenanceOrderConfTP AS _MaintenanceOrderConfTP ON _MaintenanceOrderConfTP.MaintOrderConf = MaintOrderConf AND _MaintenanceOrderConfTP.MaintOrderConfCntrValue = MaintOrderConfCntrValue  -- association [1..1]
;