P_PURORDSINGLESCHEDULELINEHLP1

CDS View

P_PURORDSINGLESCHEDULELINEHLP1 is a CDS View in S/4HANA. 1 CDS views read from this table.

CDS Views using this table (1)

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