I_FldLogsMaintOrderToIssueVH

DDL: I_FLDLOGSMAINTORDERTOISSUEVH Type: view_entity COMPOSITE Package: FLOG_RETURN_PROCG_BASE

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. Part of development package FLOG_RETURN_PROCG_BASE.

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
KEY ReservationItem I_OrderComponent ReservationItem
KEY RecordType I_OrderComponent RecordType
OrderID I_OrderComponent OrderID
BillOfMaterialItemNumber I_OrderComponent BillOfMaterialItemNumber
Plant I_OrderComponent Plant
StorageLocation I_OrderComponent StorageLocation
ControllingArea I_OrderComponent ControllingArea
Material I_OrderComponent Material
_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
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Maintenance Orders'
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #XL,
  dataClass: #MIXED }
@ObjectModel.representativeKey: 'Reservation'
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #COMPOSITE

define view entity I_FldLogsMaintOrderToIssueVH
  as select from I_OrderComponent         as _Order
    inner join   I_FieldLogisticsPlantAll as _FldLogsAllPlants on _FldLogsAllPlants.Plant = _Order.Plant
{
  key _Order.Reservation,
  key _Order.ReservationItem,
  key _Order.RecordType,
      _Order.OrderID,
      _Order.BillOfMaterialItemNumber,
      _Order.Plant,
      _Order.StorageLocation,
      _Order.ControllingArea,
      _Order.Material,

      /*Associations*/
      _Order._Material,
      _Order._Plant,
      _Order._Reservation,
      _Order._Order,
      _Order._StorageLocation,
      _Order._ControllingArea,
      _Order._ReservationDocRecordType
}