R_EntProjectElementForRead

DDL: R_ENTPROJECTELEMENTFORREAD SQL: RPROJELEM4READ Type: view COMPOSITE Package: VDM_PPM_OBJECTS_TP_TASK

Lists all elements a user is permitted to read

R_EntProjectElementForRead is a Composite CDS View that provides data about "Lists all elements a user is permitted to read" in SAP S/4HANA. It reads from 1 data source (R_EnterpriseProjectElement) and exposes 12 fields with key field ProjectElementUUID. Part of development package VDM_PPM_OBJECTS_TP_TASK.

Data Sources (1)

SourceAliasJoin Type
R_EnterpriseProjectElement R_EnterpriseProjectElement from

Annotations (14)

NameValueLevelField
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName RPROJELEM4READ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ProjectElementUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Lists all elements a user is permitted to read view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY ProjectElementUUID ProjectElementUUID Obj Link Entity GUID
ProjectElement ProjectElement Proj Element ID
WBSElementInternalID WBSElementInternalID WBS Internal ID
ProjectUUID ProjectUUID Project UUID
ControllingArea ControllingArea Controlling Area
ProfitCenter ProfitCenter Profit Center
CompanyCode CompanyCode Receiver Company Code
ResponsibleCostCenter ResponsibleCostCenter Responsible Cost Center
Plant Plant Valuation Area
FunctionalArea FunctionalArea Sendr Fctl Area
_EnterpriseProject _EnterpriseProject
_EnterpriseProjectForUser _EnterpriseProjectForUser

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 R_EntProjectElementForRead.
-- 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: RPROJELEM4READ

CREATE VIEW R_EntProjectElementForRead AS
SELECT
  ProjectElementUUID,
  ProjectElement,
  WBSElementInternalID,
  ProjectUUID,
  ControllingArea,
  ProfitCenter,
  CompanyCode,
  ResponsibleCostCenter,
  Plant,
  FunctionalArea
FROM R_EnterpriseProjectElement
;