C_CnsldtnProjectVH

DDL: C_CNSLDTNPROJECTVH SQL: CCPROJECTVH Type: view CONSUMPTION

Project Value Help

C_CnsldtnProjectVH is a Consumption CDS View that provides data about "Project Value Help" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_CnsldtnMDSourceVH _MDSourceVH $projection.AdditionalMasterDataSource = _MDSourceVH.AdditionalMasterDataSource

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CCPROJECTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
Search.searchable true view
Consumption.ranked true view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Project view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Project Value Help view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Project Project WBS Element
AdditionalMasterDataSource AdditionalMasterDataSource
AdditionalMasterDataText
MDSourceForConsolidationFields Source

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_CnsldtnProjectVH.
-- 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: CCPROJECTVH

CREATE VIEW C_CnsldtnProjectVH AS
SELECT
  Project,
  AdditionalMasterDataSource,
  _Text[1: Language = $session.system_language].AdditionalMasterDataText AS AdditionalMasterDataText,
  cast(_MDSourceVH.MDSourceForConsolidationFields as fincs_md_source_text) AS MDSourceForConsolidationFields
LEFT OUTER JOIN C_CnsldtnMDSourceVH AS _MDSourceVH ON AdditionalMasterDataSource = _MDSourceVH.AdditionalMasterDataSource  -- association [1..1]
;