C_FixedAssetOvwCostCenterVH

DDL: C_FIXEDASSETOVWCOSTCENTERVH SQL: CFASSETOVCCRVH Type: view CONSUMPTION

Cost Center by Company Code Value Help

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

Data Sources (1)

SourceAliasJoin Type
I_CostCenter I_CostCenter from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CFASSETOVCCRVH view
EndUserText.label Cost 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 CostCenter view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CostCenter CostCenter Cost Center
KEY ControllingArea ControllingArea Controlling Area
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
CompanyCode CompanyCode Receiver Company Code
CostCenterName
_ControllingArea _ControllingArea

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_FixedAssetOvwCostCenterVH.
-- 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: CFASSETOVCCRVH

CREATE VIEW C_FixedAssetOvwCostCenterVH AS
SELECT
  CostCenter,
  ControllingArea,
  ValidityEndDate,
  ValidityStartDate,
  CompanyCode,
  _Text[1:Language = $session.system_language].CostCenterName AS CostCenterName
FROM I_CostCenter
;