I_FieldLogisticsOrder

DDL: I_FIELDLOGISTICSORDER Type: view_entity COMPOSITE

Field Logistics Order

I_FieldLogisticsOrder is a Composite CDS View that provides data about "Field Logistics Order" in SAP S/4HANA. It reads from 1 data source (I_LogisticsOrder) and exposes 11 fields with key field OrderID.

Data Sources (1)

SourceAliasJoin Type
I_LogisticsOrder I_LogisticsOrder from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Field Logistics Order view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY OrderID OrderID
OrderCategory OrderCategory
OrderType OrderType
OrderDescription OrderDescription
PriorityCode PriorityCode
Plant Plant
PlannedStartDate PlannedStartDate
ScheduledBasicStartDate ScheduledBasicStartDate
MRPController MRPController
ControllingArea ControllingArea
ResponsiblePlannerGroup ResponsiblePlannerGroup
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Field Logistics Order'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #B,
  sizeCategory: #L,
  dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
define view entity I_FieldLogisticsOrder
  as select from I_LogisticsOrder
{
  key OrderID,
      OrderCategory,
      OrderType,
      OrderDescription,
      PriorityCode,
      Plant,
      PlannedStartDate,
      ScheduledBasicStartDate,
      MRPController,
      ControllingArea,
      ResponsiblePlannerGroup      
}
where
  (
       IsMarkedForDeletion is initial
    or IsMarkedForDeletion is null
  )
  and(
       OrderCategory       = '20' --Network Order
    or OrderCategory       = '30' --MO
  )