P_PURORDSGLSCHEDLINEHELPERVW1

CDS View

Purchase Order minimum schedule date

P_PURORDSGLSCHEDLINEHELPERVW1 is a CDS View in S/4HANA. Purchase Order minimum schedule date. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_PurOrdSglSchedLineHelperVw2 view from CONSUMPTION Purchase Order minimum schedule time
@AbapCatalog.sqlViewName: 'PPOSCHHLP1'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
@VDM.viewType: #CONSUMPTION
@EndUserText.label: 'Purchase Order minimum schedule date'
// Helper view to get latest Delivery Date

define view P_PurOrdSglSchedLineHelperVw1
  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
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURGDOCSCHEDULELINE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/