I_EnterpriseProjectForUser

DDL: I_ENTERPRISEPROJECTFORUSER Type: view_entity COMPOSITE

Enterprise Project with user involvement

I_EnterpriseProjectForUser (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

R&D Engineering

I_EnterpriseProjectForUser is a Composite CDS View that provides data about "Enterprise Project with user involvement" in SAP S/4HANA. It reads from 1 data source (I_PPM_ProjectRoot) and exposes 5 fields with key field ProjectUUID.

SAP Help Documentation

CategoryCDS Views for Enterprise Projects
StatusReleased
Purpose
This CDS view can only be used to retrieve the customer and internal projects where a user is assigned to a project responsibility, with project category 7 ( Enterprise project – Professional Services ) in SAP S/4HANA Cloud. It is not intended for use in SAP S/4HANA.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentPPM-VDM
CapabilitiesAssociation Target for Defining CDS Entities
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view can only be used to retrieve the customer and internal projects where a user is assigned to a project responsibility, with project category 7 (Enterprise project – Professional Services) in SAP S/4HANA Cloud. It is not intended for use in SAP S/4HANA.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_PPM_ProjectRoot Project from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.modelingPattern #NONE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Enterprise Project with user involvement view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID I_PPM_ProjectRoot ProjectUUID Project UUID
ProjectCategory I_PPM_ProjectRoot ProjectCategory Project Category
EnterpriseProjectServiceOrg I_PPM_ProjectRoot EnterpriseProjectServiceOrg Service Organization
EntProjectIsConfidential I_PPM_ProjectRoot EntProjectIsConfidential Enterprise Project Is Confidential
UserIDendasUserID

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_EnterpriseProjectForUser.
-- 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_EnterpriseProjectForUser AS
SELECT
  Project.ProjectUUID AS ProjectUUID,
  Project.ProjectCategory AS ProjectCategory,
  Project.EnterpriseProjectServiceOrg AS EnterpriseProjectServiceOrg,
  Project.EntProjectIsConfidential AS EntProjectIsConfidential,
  case when User.UserID is null then 'A' when User.UserID is not null then User.UserID end as UserID AS UserIDendasUserID
FROM I_PPM_ProjectRoot AS Project
;