P_DELIVPROCFLOWLATESTCONFDATE

CDS View

Latest Warehouse Transfer Order Confirmation Date

P_DELIVPROCFLOWLATESTCONFDATE is a CDS View in S/4HANA. Latest Warehouse Transfer Order Confirmation Date. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_DelivProcFlowLatestTransfOrd view inner COMPOSITE Latest Warehouse Transfer Order
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XL
@EndUserText.label: 'Latest Warehouse Transfer Order Confirmation Date'
@AccessControl.authorizationCheck: #CHECK
@VDM.private: true
@VDM.viewType: #COMPOSITE
@AbapCatalog.sqlViewName: 'PDLVMAXCONFDAT'

define view P_DelivProcFlowLatestConfDate 
  as select from P_DeliveryProcFlowTransfOrd as Flow
  
  association [1..1] to I_DeliveryDocument as _DeliveryDocument on $projection.DeliveryDocument = _DeliveryDocument.DeliveryDocument
  
{
  key Flow.DeliveryDocument,
  
  max(Flow.WrhsMgmtTransfOrdConfDate) as WrhsMgmtTransfOrdConfDate,
  
  _DeliveryDocument  
}
group by Flow.DeliveryDocument