I_EngmntProjRole

DDL: I_ENGMNTPROJROLE SQL: IENGMNTPROJROLE Type: view COMPOSITE

Engagement Project Roles

I_EngmntProjRole is a Composite CDS View that provides data about "Engagement Project Roles" in SAP S/4HANA. It reads from 1 data source (I_EngagementProject) and exposes 16 fields with key field EngagementProject. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_EngagementProject EngagementProject from

Associations (1)

CardinalityTargetAliasCondition
[1..*] P_EngagementProjectRole EnagementProjectRole EngagementProject.EngagementProject = EnagementProjectRole.EngagementProject

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IENGMNTPROJROLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Engagement Project Roles view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY EngagementProject I_EngagementProject EngagementProject Engmnt Project ID
EngagementProjectType I_EngagementProject EngagementProjectType
EngagementProjectServiceOrg I_EngagementProject EngagementProjectServiceOrg Service Org.
EngagementProjectCategory I_EngagementProject EngagementProjectCategory
ProjectAccountant
ProjectController
ProjectPartner
ProjectManager
ProjectManagerExternalID
ProjectManagerName
ProjectAccountantExternalID
ProjectAccountantName
ProjectControllerExternalID
ProjectControllerName
ProjectPartnerExternalID
ProjectPartnerName

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_EngmntProjRole.
-- 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: IENGMNTPROJROLE

CREATE VIEW I_EngmntProjRole AS
SELECT
  EngagementProject.EngagementProject AS EngagementProject,
  EngagementProject.EngagementProjectType AS EngagementProjectType,
  EngagementProject.EngagementProjectServiceOrg AS EngagementProjectServiceOrg,
  EngagementProject.EngagementProjectCategory AS EngagementProjectCategory,
  max(EnagementProjectRole.ProjectAccountant) AS ProjectAccountant,
  max(EnagementProjectRole.ProjectController) AS ProjectController,
  max(EnagementProjectRole.ProjectPartner) AS ProjectPartner,
  max(EnagementProjectRole.ProjectManager) AS ProjectManager,
  max(EnagementProjectRole.ProjectManagerExternalID) AS ProjectManagerExternalID,
  max(EnagementProjectRole.ProjectManagerName) AS ProjectManagerName,
  max(EnagementProjectRole.ProjectAccountantExternalID) AS ProjectAccountantExternalID,
  max(EnagementProjectRole.ProjectAccountantName) AS ProjectAccountantName,
  max(EnagementProjectRole.ProjectControllerExternalID) AS ProjectControllerExternalID,
  max(EnagementProjectRole.ProjectControllerName) AS ProjectControllerName,
  max(EnagementProjectRole.ProjectPartnerExternalID) AS ProjectPartnerExternalID,
  max(EnagementProjectRole.ProjectPartnerName) AS ProjectPartnerName
FROM I_EngagementProject AS EngagementProject
LEFT OUTER JOIN P_EngagementProjectRole AS EnagementProjectRole ON EngagementProject.EngagementProject = EnagementProjectRole.EngagementProject  -- association [1..*]
;