I_PPM_ProjectMilestEssent

DDL: I_PPM_PROJECTMILESTESSENT Type: view COMPOSITE Package: VDM_PPM_OBJECTS_PROJECT

UUID of essential milestone of proj.

I_PPM_ProjectMilestEssent is a Composite CDS View that provides data about "UUID of essential milestone of proj." in SAP S/4HANA. It reads from 2 data sources (P_PPM_ProjectMilestEssentDate, I_PPM_Task) and exposes 4 fields with key field ProjectUUID. It has 2 associations to related views. Part of development package VDM_PPM_OBJECTS_PROJECT.

Data Sources (2)

SourceAliasJoin Type
P_PPM_ProjectMilestEssentDate projectMilestEssentDate from
I_PPM_Task task inner

Associations (2)

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

Annotations (13)

NameValueLevelField
EndUserText.label UUID of essential milestone of proj. view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName IPPMPROJMLSTE 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
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (4)

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

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_ProjectMilestEssent.
-- 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_ProjectMilestEssent AS
SELECT
  task.ProjectUUID AS ProjectUUID,
  max(task.TaskUUID) AS TaskUUID
FROM P_PPM_ProjectMilestEssentDate AS projectMilestEssentDate
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]
LEFT OUTER JOIN I_PPM_TaskText AS _TaskText ON TaskUUID = _TaskText.TaskUUID  -- association [1..1]
;