C_EntProjectRankingProjectVH

DDL: C_ENTPROJECTRANKINGPROJECTVH Type: view CONSUMPTION Package: ODATA_PPM_PRO_PROJECT_RANKING

Ent. Project Ranking Project Value Help

C_EntProjectRankingProjectVH is a Consumption CDS View that provides data about "Ent. Project Ranking Project Value Help" in SAP S/4HANA. It reads from 1 data source (I_EnterpriseProject) and exposes 19 fields with key field ProjectUUID. It has 2 associations to related views. Part of development package ODATA_PPM_PRO_PROJECT_RANKING.

Data Sources (1)

SourceAliasJoin Type
I_EnterpriseProject Project from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_ProfitCenterText _ProfitCenterText $projection.ControllingArea = _ProfitCenterText.ControllingArea and $projection.ProfitCenter = _ProfitCenterText.ProfitCenter and _ProfitCenterText.ValidityEndDate > $session.system_date and _ProfitCenterText.ValidityStartDate < $session.system_date
[0..*] I_EntProjProcessingStatusText _ProcessingStatusText $projection.ProcessingStatus = _ProcessingStatusText.DomainValue

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName CPPMENTRNKPVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
ObjectModel.createEnabled false view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ProjectUUID view
Search.searchable true view
EndUserText.label Ent. Project Ranking Project Value Help view
Consumption.ranked true view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID I_EnterpriseProject ProjectUUID Project UUID
Project I_EnterpriseProject Project WBS Element
ProjectDescription I_EnterpriseProject ProjectDescription Project Name
ProfitCenter I_EnterpriseProject ProfitCenter Profit Center
ProfitCenterName
ControllingArea I_EnterpriseProject ControllingArea Controlling Area
ProcessingStatus I_EnterpriseProject ProcessingStatus Worklist Status
ProcessingStatusText
ProjectSummaryTaskUUID I_EnterpriseProject ProjectSummaryTaskUUID Entity GUID
ProjectProfileCode I_EnterpriseProject ProjectProfileCode Project Profile
EnterpriseProjectType I_EnterpriseProject EnterpriseProjectType Proj.type
CompanyCode I_EnterpriseProject CompanyCode Receiver Company Code
ResponsibleCostCenter I_EnterpriseProject ResponsibleCostCenter Responsible Cost Center
Plant I_EnterpriseProject Plant Valuation Area
FunctionalArea I_EnterpriseProject FunctionalArea Sendr Fctl Area
_AuthUser I_EnterpriseProject _AuthUser
_AuthSubst I_EnterpriseProject _AuthSubst
_AuthRole I_EnterpriseProject _AuthRole
_AuthGroup I_EnterpriseProject _AuthGroup

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_EntProjectRankingProjectVH.
-- 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 C_EntProjectRankingProjectVH AS
SELECT
  Project.ProjectUUID AS ProjectUUID,
  Project.Project AS Project,
  Project.ProjectDescription AS ProjectDescription,
  Project.ProfitCenter AS ProfitCenter,
  _ProfitCenterText[1: Language = $session.system_language ].ProfitCenterName AS ProfitCenterName,
  Project.ControllingArea AS ControllingArea,
  Project.ProcessingStatus AS ProcessingStatus,
  cast ( _ProcessingStatusText[ 1:Language = $session.system_language ].ProcessingStatusText as val_text preserving type ) AS ProcessingStatusText,
  Project.ProjectSummaryTaskUUID AS ProjectSummaryTaskUUID,
  Project.ProjectProfileCode AS ProjectProfileCode,
  Project.EnterpriseProjectType AS EnterpriseProjectType,
  Project.CompanyCode AS CompanyCode,
  Project.ResponsibleCostCenter AS ResponsibleCostCenter,
  Project.Plant AS Plant,
  Project.FunctionalArea AS FunctionalArea,
  Project._AuthUser AS _AuthUser,
  Project._AuthSubst AS _AuthSubst,
  Project._AuthRole AS _AuthRole,
  Project._AuthGroup AS _AuthGroup
FROM I_EnterpriseProject AS Project
LEFT OUTER JOIN I_ProfitCenterText AS _ProfitCenterText ON ControllingArea = _ProfitCenterText.ControllingArea AND ProfitCenter = _ProfitCenterText.ProfitCenter AND _ProfitCenterText.ValidityEndDate > $session.system_date AND _ProfitCenterText.ValidityStartDate < $session.system_date  -- association [0..*]
LEFT OUTER JOIN I_EntProjProcessingStatusText AS _ProcessingStatusText ON ProcessingStatus = _ProcessingStatusText.DomainValue  -- association [0..*]
;