C_ProjDemandCostCenterVH

DDL: C_PROJDEMANDCOSTCENTERVH Type: view CONSUMPTION

Cost Center Value Help

C_ProjDemandCostCenterVH is a Consumption CDS View that provides data about "Cost Center Value Help" in SAP S/4HANA. It reads from 1 data source (I_CostCenter) and exposes 6 fields with key fields ControllingArea, CostCenter, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_CostCenter CostCenter from

Annotations (15)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Cost Center Value Help view
AbapCatalog.sqlViewName CPRJDMNDCOCEVH view
AbapCatalog.dataMaintenance #RESTRICTED view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CostCenter view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea I_CostCenter ControllingArea Controlling Area
KEY CostCenter I_CostCenter CostCenter Cost Center
KEY ValidityEndDate I_CostCenter ValidityEndDate Validity End Date
CostCenterCategory I_CostCenter CostCenterCategory Cost Center Category
CostCenterName Cost Center Name
ValidityStartDate I_CostCenter ValidityStartDate Validity Start Date

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_ProjDemandCostCenterVH.
-- 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_ProjDemandCostCenterVH AS
SELECT
  CostCenter.ControllingArea AS ControllingArea,
  CostCenter.CostCenter AS CostCenter,
  CostCenter.ValidityEndDate AS ValidityEndDate,
  CostCenter.CostCenterCategory AS CostCenterCategory,
  CostCenter._Text[1:Language=$session.system_language].CostCenterName AS CostCenterName,
  CostCenter.ValidityStartDate AS ValidityStartDate
FROM I_CostCenter AS CostCenter
;