I_DevProjAssgdBusinessPartner

DDL: I_DEVPROJASSGDBUSINESSPARTNER Type: view_entity COMPOSITE

Responsible or Assigned BP in Dev Proj

I_DevProjAssgdBusinessPartner is a Composite CDS View that provides data about "Responsible or Assigned BP in Dev Proj" in SAP S/4HANA. It reads from 2 data sources (I_DevProjAssgdBPAbstract, I_DevProjAssgdBPConcrete) and exposes 18 fields with key fields ReferencedObjectUUID, BusinessPartnerUUID, BusinessPartnerUUID.

Data Sources (2)

SourceAliasJoin Type
I_DevProjAssgdBPAbstract I_DevProjAssgdBPAbstract union
I_DevProjAssgdBPConcrete I_DevProjAssgdBPConcrete from

Annotations (10)

NameValueLevelField
EndUserText.label Responsible or Assigned BP in Dev Proj view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey BusinessPartnerUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY ReferencedObjectUUID ReferencedObjectUUID Referenced Object
KEY BusinessPartnerUUID BusinessPartnerUUID UUID
DevProjRoleStfngShadowRoleUUID DevProjRoleStfngShadowRoleUUID Project Participant
ProjectRoleUUID ProjectRoleUUID Role
IsBusinessPartnerResponsible IsBusinessPartnerResponsible User Name
StaffingPeriodStartDateTime StaffingPeriodStartDateTime
StaffingPeriodFinishDateTime StaffingPeriodFinishDateTime
_BusinessPartner _BusinessPartner
_DevelopmentProjectElement _DevelopmentProjectElement
KEY BusinessPartnerUUID BusinessPartnerUUID UUID
DevProjRoleStfngShadowRoleUUID DevProjRoleStfngShadowRoleUUID Project Participant
ProjectRoleUUID ProjectRoleUUID Role
IsBusinessPartnerResponsible IsBusinessPartnerResponsible User Name
StaffingPeriodStartDateTime StaffingPeriodStartDateTime
StaffingPeriodFinishDateTime StaffingPeriodFinishDateTime
_BusinessPartner _BusinessPartner
_DevelopmentProjectElement _DevelopmentProjectElement
_ProjectRoleName _ProjectRoleName

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_DevProjAssgdBusinessPartner.
-- 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_DevProjAssgdBusinessPartner AS
SELECT
  ReferencedObjectUUID,
  BusinessPartnerUUID,
  DevProjRoleStfngShadowRoleUUID,
  ProjectRoleUUID,
  IsBusinessPartnerResponsible,
  StaffingPeriodStartDateTime,
  StaffingPeriodFinishDateTime
FROM I_DevProjAssgdBPConcrete
-- UNION with additional select branch(es): I_DevProjAssgdBPAbstract
;