C_PPM_ProjSrchByBPDrct

DDL: C_PPM_PROJSRCHBYBPDRCT SQL: CPPMPRJBYMGRD Type: view CONSUMPTION

Projects by directly assigned Proj. Mgr

C_PPM_ProjSrchByBPDrct is a Consumption CDS View that provides data about "Projects by directly assigned Proj. Mgr" in SAP S/4HANA. It reads from 1 data source (I_PPM_ProjSrchByBPDrct) and exposes 9 fields with key fields ProjectUUID, ProjectSummaryTaskUUID.

Data Sources (1)

SourceAliasJoin Type
I_PPM_ProjSrchByBPDrct Project from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName CPPMPRJBYMGRD view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.representativeKey ProjectUUID view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
UI.headerInfo.typeName Project view
UI.headerInfo.typeNamePlural Projects view
UI.headerInfo.title.value Project view
UI.headerInfo.description.value ProjectName view
Consumption.semanticObject EnterpriseProject view
EndUserText.label Projects by directly assigned Proj. Mgr view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID ProjectUUID Project UUID
KEY ProjectSummaryTaskUUID ProjectSummaryTaskUUID ProjectSummaryTask UUID
Project Project Project ID
ProjectName ProjectName Project
PersonFullName PersonFullName Project Manager
FirstName FirstName First Name
LastName LastName Last Name
BusinessPartnerUUID BusinessPartnerUUID UUID
_BusinessUser _BusinessUser

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_PPM_ProjSrchByBPDrct.
-- 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: CPPMPRJBYMGRD

CREATE VIEW C_PPM_ProjSrchByBPDrct AS
SELECT
  ProjectUUID,
  ProjectSummaryTaskUUID,
  Project,
  ProjectName,
  PersonFullName,
  FirstName,
  LastName,
  BusinessPartnerUUID
FROM I_PPM_ProjSrchByBPDrct AS Project
;