P_DelivProcFlowLatestConfDate

DDL: P_DELIVPROCFLOWLATESTCONFDATE SQL: PDLVMAXCONFDAT Type: view COMPOSITE

Latest Warehouse Transfer Order Confirmation Date

P_DelivProcFlowLatestConfDate is a Composite CDS View that provides data about "Latest Warehouse Transfer Order Confirmation Date" in SAP S/4HANA. It reads from 1 data source (P_DeliveryProcFlowTransfOrd) and exposes 3 fields with key field DeliveryDocument. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_DeliveryProcFlowTransfOrd Flow from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_DeliveryDocument _DeliveryDocument $projection.DeliveryDocument = _DeliveryDocument.DeliveryDocument

Annotations (9)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocument P_DeliveryProcFlowTransfOrd DeliveryDocument
WrhsMgmtTransfOrdConfDate
_DeliveryDocument _DeliveryDocument
@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         
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_DELIVERYPROCFLOWTRANSFORD"
],
"ASSOCIATED":
[
"I_DELIVERYDOCUMENT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/