C_FixedAssetOvwProfitCenterVH

DDL: C_FIXEDASSETOVWPROFITCENTERVH SQL: CFASSETOVPCRVH Type: view CONSUMPTION

Profit Center by Company Code Value Help

C_FixedAssetOvwProfitCenterVH is a Consumption CDS View that provides data about "Profit Center by Company Code Value Help" in SAP S/4HANA. It reads from 1 data source (I_ProfitCenter) and exposes 6 fields with key fields ControllingArea, ProfitCenter, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_ProfitCenter I_ProfitCenter from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CFASSETOVPCRVH view
EndUserText.label Profit Center by Company Code Value Help view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ProfitCenter view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea Controlling Area
KEY ProfitCenter ProfitCenter Profit Center
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
CompanyCode CompanyCode Receiver Company Code
ProfitCenterName

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_FixedAssetOvwProfitCenterVH.
-- 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: CFASSETOVPCRVH

CREATE VIEW C_FixedAssetOvwProfitCenterVH AS
SELECT
  ControllingArea,
  ProfitCenter,
  ValidityEndDate,
  ValidityStartDate,
  CompanyCode,
  _Text[1:Language = $session.system_language].ProfitCenterName AS ProfitCenterName
FROM I_ProfitCenter
;