E_CostCenter

DDL: E_COSTCENTER SQL: EFICOSTCENTER Type: view EXTENSION Package: FINS_FIS_FICO

Include View for Cost Center Master Data

E_CostCenter is a Extension CDS View that provides data about "Include View for Cost Center Master Data" in SAP S/4HANA. It reads from 1 data source (csks) and exposes 3 fields with key fields ControllingArea, CostCenter, ValidityEndDate. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
csks Persistence from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName EFICOSTCENTER view
EndUserText.label Include View for Cost Center Master Data view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea csks kokrs Org. Value
KEY CostCenter csks kostl Substitute CC
KEY ValidityEndDate csks datbi Validity period

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 E_CostCenter.
-- 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: EFICOSTCENTER

CREATE VIEW E_CostCenter AS
SELECT
  Persistence.kokrs AS ControllingArea,
  Persistence.kostl AS CostCenter,
  Persistence.datbi AS ValidityEndDate
FROM csks AS Persistence
;