C_EngmntProjectRoleAssgmt

DDL: C_ENGMNTPROJECTROLEASSGMT Type: view CONSUMPTION Package: CPD_CDS

Engagement Project Roles

C_EngmntProjectRoleAssgmt is a Consumption CDS View that provides data about "Engagement Project Roles" in SAP S/4HANA. It reads from 1 data source (I_EngmntProjectWithRoleAssgmt) and exposes 15 fields with key fields EngagementProject, ProjectRoleType. Part of development package CPD_CDS.

Data Sources (1)

SourceAliasJoin Type
I_EngmntProjectWithRoleAssgmt I_EngmntProjectWithRoleAssgmt from

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CENGPRJROLASSGMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
AccessControl.personalData.blockingIndicator IsBusinessPurposeCompleted view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Engagement Project Roles view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #NONE view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY EngagementProject EngagementProject Engmnt Project ID
KEY ProjectRoleType ProjectRoleType Role Type
BusinessPartner BusinessPartner Issuing Authority
BusinessUser UserID User Name
EngagementProjectUUID EngagementProjectUUID Engmnt Project UUID
ObjectName
BusinessPartnerFullName BusinessPartnerFullName Broker Name
BusinessPartnerImageURL Image URL
DefaultEmailAddress Default Email Address
NormalizedPhoneNumber Phone
MblNormalizedPhoneNumber Mobile
IsBusinessPurposeCompleted _BusinessPartner IsBusinessPurposeCompleted Purpose Completed
_EngagementProject _EngagementProject
_MyProjects _MyProjects
_BusinessPartner _BusinessPartner

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 C_EngmntProjectRoleAssgmt.
-- 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 C_EngmntProjectRoleAssgmt AS
SELECT
  EngagementProject,
  ProjectRoleType,
  BusinessPartner,
  UserID AS BusinessUser,
  EngagementProjectUUID,
  _ProjectRoleText[LanguageCode = $session.system_language].ObjectName AS ObjectName,
  BusinessPartnerFullName,
  cast('' as wfd_image_uri_internal) AS BusinessPartnerImageURL,
  cast('' as ad_smtpadr) AS DefaultEmailAddress,
  cast('' as ad_telnrlg) AS NormalizedPhoneNumber,
  cast('' as ad_telnrlg) AS MblNormalizedPhoneNumber,
  _BusinessPartner.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted
FROM I_EngmntProjectWithRoleAssgmt
;