I_FldLogsMaintOrderToIssueVH

DDL: I_FLDLOGSMAINTORDERTOISSUEVH Type: view_entity COMPOSITE

Maintenance Orders

I_FldLogsMaintOrderToIssueVH is a Composite CDS View that provides data about "Maintenance Orders" in SAP S/4HANA. It reads from 2 data sources (I_FieldLogisticsPlantAll, I_OrderComponent) and exposes 16 fields with key fields Reservation, ReservationItem, RecordType.

Data Sources (2)

SourceAliasJoin Type
I_FieldLogisticsPlantAll _FldLogsAllPlants inner
I_OrderComponent _Order from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Maintenance Orders view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey Reservation view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY Reservation I_OrderComponent Reservation Reservation
KEY ReservationItem I_OrderComponent ReservationItem Reservation Item
KEY RecordType I_OrderComponent RecordType Reservation Record Type
OrderID I_OrderComponent OrderID Order ID
BillOfMaterialItemNumber I_OrderComponent BillOfMaterialItemNumber Item
Plant I_OrderComponent Plant Valuation Area
StorageLocation I_OrderComponent StorageLocation StorageLocation
ControllingArea I_OrderComponent ControllingArea Controlling Area
Material I_OrderComponent Material Vehicle Model
_Material I_OrderComponent _Material
_Plant I_OrderComponent _Plant
_Reservation I_OrderComponent _Reservation
_Order I_OrderComponent _Order
_StorageLocation I_OrderComponent _StorageLocation
_ControllingArea I_OrderComponent _ControllingArea
_ReservationDocRecordType I_OrderComponent _ReservationDocRecordType

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_FldLogsMaintOrderToIssueVH.
-- 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.

CREATE VIEW I_FldLogsMaintOrderToIssueVH AS
SELECT
  _Order.Reservation AS Reservation,
  _Order.ReservationItem AS ReservationItem,
  _Order.RecordType AS RecordType,
  _Order.OrderID AS OrderID,
  _Order.BillOfMaterialItemNumber AS BillOfMaterialItemNumber,
  _Order.Plant AS Plant,
  _Order.StorageLocation AS StorageLocation,
  _Order.ControllingArea AS ControllingArea,
  _Order.Material AS Material,
  _Order._Material AS _Material,
  _Order._Plant AS _Plant,
  _Order._Reservation AS _Reservation,
  _Order._Order AS _Order,
  _Order._StorageLocation AS _StorageLocation,
  _Order._ControllingArea AS _ControllingArea,
  _Order._ReservationDocRecordType AS _ReservationDocRecordType
FROM I_OrderComponent AS _Order
INNER JOIN I_FieldLogisticsPlantAll AS _FldLogsAllPlants ON /* join condition not captured in parsed metadata */
;