FAC_COSTCENTERVH

DDL: FAC_COSTCENTERVH SQL: FACCOCTVH Type: view Package: FINS_FI_ACC_VALIDATION

Value help for cost center

FAC_COSTCENTERVH is a CDS View that provides data about "Value help for cost center" in SAP S/4HANA. Part of development package FINS_FI_ACC_VALIDATION.

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FACCOCTVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value help for cost center view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CostCenter CostCenter Cost Center
KEY ControllingArea ControllingArea Controlling Area
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
CostCenterName

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 FAC_COSTCENTERVH.
-- 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: FACCOCTVH

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