I_PPM_ProjectResponsible

DDL: I_PPM_PROJECTRESPONSIBLE SQL: IPPMPRJRESP Type: view COMPOSITE

Provide Responsible Business Partner of Project

I_PPM_ProjectResponsible is a Composite CDS View that provides data about "Provide Responsible Business Partner of Project" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_PPM_ProjectSummaryTask _ProjectSummaryTask $projection.ProjectUUID = _ProjectSummaryTask.ProjectUUID

Annotations (12)

NameValueLevelField
EndUserText.label Provide Responsible Business Partner of Project view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName IPPMPRJRESP view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey ProjectUUID view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID task ProjectUUID Project UUID
KEY BusinessPartnerUUID assigned BusinessPartnerUUID UUID
ProjectRoleUUID assigned ProjectRoleUUID Role
StaffingPeriodStartDateTime assigned StaffingPeriodStartDateTime
StaffingPeriodFinishDateTime assigned StaffingPeriodFinishDateTime
_ProjectSummaryTask _ProjectSummaryTask
_BusinessUser assigned _BusinessUser

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_ProjectResponsible.
-- 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.
-- SQL view name: IPPMPRJRESP

CREATE VIEW I_PPM_ProjectResponsible AS
SELECT
  task.ProjectUUID AS ProjectUUID,
  assigned.BusinessPartnerUUID AS BusinessPartnerUUID,
  assigned.ProjectRoleUUID AS ProjectRoleUUID,
  assigned.StaffingPeriodStartDateTime AS StaffingPeriodStartDateTime,
  assigned.StaffingPeriodFinishDateTime AS StaffingPeriodFinishDateTime,
  assigned._BusinessUser AS _BusinessUser
LEFT OUTER JOIN I_PPM_ProjectSummaryTask AS _ProjectSummaryTask ON ProjectUUID = _ProjectSummaryTask.ProjectUUID  -- association [1..1]
;