I_PPM_ProjectMilestRelNext

DDL: I_PPM_PROJECTMILESTRELNEXT Type: view COMPOSITE

UUID of next relevant milestone of proj.

I_PPM_ProjectMilestRelNext is a Composite CDS View that provides data about "UUID of next relevant milestone of proj." in SAP S/4HANA. It reads from 2 data sources (P_PPM_ProjectMilestRelNextDate, I_PPM_Task) and exposes 3 fields with key field ProjectUUID. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
P_PPM_ProjectMilestRelNextDate projectMilestRelNextDate from
I_PPM_Task task inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_PPM_Task _Task $projection.TaskUUID = _Task.TaskUUID

Annotations (13)

NameValueLevelField
EndUserText.label UUID of next relevant milestone of proj. view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName IPPMPROMLSTRELN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey ProjectUUID view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID I_PPM_Task ProjectUUID Project UUID
TaskUUID
_Task _Task

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_PPM_ProjectMilestRelNext.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_PPM_ProjectMilestRelNext AS
SELECT
  task.ProjectUUID AS ProjectUUID,
  max(task.TaskUUID) AS TaskUUID
FROM P_PPM_ProjectMilestRelNextDate AS projectMilestRelNextDate
INNER JOIN I_PPM_Task AS task ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_PPM_Task AS _Task ON TaskUUID = _Task.TaskUUID  -- association [1..1]
;