P_PURORDSINGLESCHEDULELINEHLP1
P_PURORDSINGLESCHEDULELINEHLP1 is a CDS View in S/4HANA. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_PurOrdSingleScheduleLineHlp2 | view | from | COMPOSITE |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@VDM.private: true
@AbapCatalog.sqlViewName: 'PMMPURORDSSHLP1'
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
// Helper view to get latest Delivery Date
define view P_PurOrdSingleScheduleLineHlp1 as select from I_PurgDocScheduleLine
{ key I_PurgDocScheduleLine.PurchasingDocument as PurchasingDocument,
key I_PurgDocScheduleLine.PurchasingDocumentItem as PurchasingDocumentItem,
min( I_PurgDocScheduleLine.ScheduleLineDeliveryDate ) as ScheduleLineDeliveryDate
}
group by
PurchasingDocument,
PurchasingDocumentItem