P_SUPLRDELIVERYPREDICTIONCOUNT

CDS View

Count of Predictions By PO Items

P_SUPLRDELIVERYPREDICTIONCOUNT is a CDS View in S/4HANA. Count of Predictions By PO Items. It contains 3 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_SuplrDeliveryPredictCount1 view inner COMPOSITE Count of Supplier Delivery Prediction based on PO Item

Fields (3)

KeyField CDS FieldsUsed in Views
PurchaseOrder PurchaseOrder 1
PurchaseOrderItem PurchaseOrderItem 1
ScheduleLine ScheduleLine 1
@AbapCatalog.sqlViewName: 'PSDPPOICNT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private: true
@VDM.viewType: #COMPOSITE
define view P_SuplrDeliveryPredictionCount
  as select from I_SuplrDeliveryPredictionCache
{

  key PurchaseOrder,
  key PurchaseOrderItem,
      min(ScheduleLine) as ScheduleLine



}

group by
  PurchaseOrder,
  PurchaseOrderItem