P_PURORDRELEVANCEUNIFIED
P_PURORDRELEVANCEUNIFIED 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 |
|---|---|---|---|---|
| I_PurchaseOrderItemRelevance | view | from | COMPOSITE | Aggregated and normalized relevance per purchase order item |
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'PMMPORELUNIFIED'
@VDM.viewType: #COMPOSITE
@VDM.private: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
//@EndUserText.label: 'Unified Relevances by overdue days'
define view P_PurOrdRelevanceUnified as
select from I_PurchaseOrderItemOverdue as OverduePOItems
left outer join P_PurOrdScheduleLineRelevance as relByParam on OverduePOItems.PurchaseOrder = relByParam.PurchaseOrder
and OverduePOItems.PurchaseOrderItem = relByParam.PurchaseOrderItem
{
key OverduePOItems.PurchaseOrder as PurchaseOrder,
key OverduePOItems.PurchaseOrderItem,
key OverduePOItems.ScheduleLine,
relByParam.WeightedRelevance
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCHASEORDERITEMOVERDUE",
"P_PURORDSCHEDULELINERELEVANCE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/