@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
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SUPLRDELIVERYPREDICTIONCACHE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/