C_ProjectManagerVH

DDL: C_PROJECTMANAGERVH SQL: CPROJMNGRVH Type: view CONSUMPTION

Project Manager Value Help

C_ProjectManagerVH is a Consumption CDS View that provides data about "Project Manager Value Help" in SAP S/4HANA. It reads from 1 data source (I_BusinessUserBasic) and exposes 18 fields with key fields BusinessPartnerUUID, BusinessPartner. It is used in 1 Fiori application: Project Cost Report - Overview.

Data Sources (1)

SourceAliasJoin Type
I_BusinessUserBasic I_BusinessUserBasic from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CPROJMNGRVH view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label Project Manager Value Help view
VDM.viewType #CONSUMPTION view
OData.publish true view
Search.searchable true view

Fiori Apps (1)

App IDApp NameTypeDescription
F2513 Project Cost Report - Overview Analytical An application to compare the plan versus actual costs of a project.

Project Cost Report - Overview

Business Role: Project Financial Controller

This feature enables you to easily monitor aggregated and non-aggregated project costs by allowing you to compare plan costs with actual costs. You can also monitor the variance and costs at individual line item level, configure two cost planning categories and use one category for calculation of variance. You can also enter the level to which a project tree has to be expanded, and view cost details of multiple projects or WBS elements from different projects and hierarchies.

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerUUID BusinessPartnerUUID UUID
KEY BusinessPartner BusinessPartner Issuing Authority
BusinessPartnerFullName PersonFullName Project Manager Name
FirstName FirstName First Name
LastName LastName Last Name
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
DataControllerSet DataControllerSet Data Ctrlr. Set
DataController1 DataController1 Data Controller
DataController2 DataController2 Data Controller
DataController3 DataController3 Data Controller
DataController4 DataController4 Data Controller
DataController5 DataController5 Data Controller
DataController6 DataController6 Data Controller
DataController7 DataController7 Data Controller
DataController8 DataController8 Data Controller
DataController9 DataController9 Data Controller
DataController10 DataController10 Data Controller

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_ProjectManagerVH.
-- 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: CPROJMNGRVH

CREATE VIEW C_ProjectManagerVH AS
SELECT
  BusinessPartnerUUID,
  BusinessPartner,
  PersonFullName AS BusinessPartnerFullName,
  FirstName,
  LastName,
  AuthorizationGroup,
  IsBusinessPurposeCompleted,
  DataControllerSet,
  DataController1,
  DataController2,
  DataController3,
  DataController4,
  DataController5,
  DataController6,
  DataController7,
  DataController8,
  DataController9,
  DataController10
FROM I_BusinessUserBasic
;