C_MM_ProfitCenterValHelp

DDL: C_MM_PROFITCENTERVALHELP SQL: CMMPROFITCVH Type: view CONSUMPTION

Profit Center Value Help

C_MM_ProfitCenterValHelp is a Consumption CDS View that provides data about "Profit Center Value Help" in SAP S/4HANA. It reads from 1 data source (I_ProfitCenter) and exposes 4 fields with key fields ProfitCenter, ValidityEndDate, ControllingArea. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenter I_ProfitCenter from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProfitCenterText _Text $projection.ProfitCenter = _Text.ProfitCenter

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CMMPROFITCVH view
VDM.viewType #CONSUMPTION view
Search.searchable true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.representativeKey ProfitCenter view
EndUserText.label Profit Center Value Help view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProfitCenter ProfitCenter Profit Center
KEY ValidityEndDate ValidityEndDate ValidTo
KEY ControllingArea ControllingArea Controlling Area
_Text _Text

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_MM_ProfitCenterValHelp.
-- 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: CMMPROFITCVH

CREATE VIEW C_MM_ProfitCenterValHelp AS
SELECT
  ProfitCenter,
  ValidityEndDate,
  ControllingArea
FROM I_ProfitCenter
LEFT OUTER JOIN I_ProfitCenterText AS _Text ON ProfitCenter = _Text.ProfitCenter  -- association [0..*]
;