I_FldLogsRetMaintOrder

DDL: I_FLDLOGSRETMAINTORDER SQL: IFLRETMAINORD Type: view BASIC Package: FLOG_RETURN

FL Return Maintenance Order

I_FldLogsRetMaintOrder is a Basic CDS View that provides data about "FL Return Maintenance Order" in SAP S/4HANA. It reads from 1 data source (I_FldLogsFlogReturnBasic) and exposes 10 fields with key fields FldLogsMaintenanceOrder, MaintenanceOrderComponent, MaintenanceOrderOperation. It has 1 association to related views. Part of development package FLOG_RETURN.

Data Sources (1)

SourceAliasJoin Type
I_FldLogsFlogReturnBasic _RetBasic from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_OrderComponent _Component $projection.FldLogsMaintenanceOrder = _Component.OrderID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IFLRETMAINORD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label FL Return Maintenance Order view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #B view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY FldLogsMaintenanceOrder FldLogsMaintenanceOrder Order
KEY MaintenanceOrderComponent _Component BillOfMaterialItemNumber Item
KEY MaintenanceOrderOperation _Component OrderOperation Operation or Phase
FldLogsReferenceDocumentNumber FldLogsReferenceDocumentNumber Reference Doc Number
ReferenceDocumentItem ReferenceDocumentItem Reference item
FldLogsReferenceDocCategory FldLogsReferenceDocCategory Ref. Document Type
InboundDelivery InboundDelivery LE Delivery
InboundDeliveryItem InboundDeliveryItem Item
MaterialDocument MaterialDocument Material Doc.
MaterialDocumentItem MaterialDocumentItem Material Document Item

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_FldLogsRetMaintOrder.
-- 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: IFLRETMAINORD

CREATE VIEW I_FldLogsRetMaintOrder AS
SELECT
  FldLogsMaintenanceOrder,
  _Component.BillOfMaterialItemNumber AS MaintenanceOrderComponent,
  _Component.OrderOperation AS MaintenanceOrderOperation,
  FldLogsReferenceDocumentNumber,
  ReferenceDocumentItem,
  FldLogsReferenceDocCategory,
  InboundDelivery,
  InboundDeliveryItem,
  MaterialDocument,
  MaterialDocumentItem
FROM I_FldLogsFlogReturnBasic AS _RetBasic
LEFT OUTER JOIN I_OrderComponent AS _Component ON FldLogsMaintenanceOrder = _Component.OrderID  -- association [0..1]
;