C_RevnVarcPrftCtrVH

DDL: C_REVNVARCPRFTCTRVH SQL: CRVAPRCTRVH Type: view CONSUMPTION

Value help for Profit Center

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

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenter I_ProfitCenter from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ControllingArea _ControllingAreaText $projection.ControllingArea = _ControllingAreaText.ControllingArea

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CRVAPRCTRVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Value help for Profit Center view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
Search.searchable true view
UI.textArrangement #TEXT_LAST view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ProfitCenter ProfitCenter Profit Center
KEY ControllingArea ControllingArea Controlling Area
KEY ValidityEndDate ValidityEndDate ValidTo
ProfitCenterName
CompanyCode CompanyCode Receiver Company Code
Country Country Venue: Ctry/Reg
_ControllingAreaText _ControllingAreaText

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_RevnVarcPrftCtrVH.
-- 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: CRVAPRCTRVH

CREATE VIEW C_RevnVarcPrftCtrVH AS
SELECT
  ProfitCenter,
  ControllingArea,
  ValidityEndDate,
  _Text[1: Language = $session.system_language ].ProfitCenterName AS ProfitCenterName,
  CompanyCode,
  Country
FROM I_ProfitCenter
LEFT OUTER JOIN I_ControllingArea AS _ControllingAreaText ON ControllingArea = _ControllingAreaText.ControllingArea  -- association [1..1]
;