I_CostCenterDetail

DDL: I_COSTCENTERDETAIL SQL: IFICOSTCENTERD Type: view BASIC

Cost Center Detail

I_CostCenterDetail is a Basic CDS View (Dimension) that provides data about "Cost Center Detail" in SAP S/4HANA. It reads from 1 data source (csks) and exposes 5 fields with key fields ControllingArea, CostCenter, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
csks csks from

Annotations (11)

NameValueLevelField
EndUserText.label Cost Center Detail view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFICOSTCENTERD view
ObjectModel.representativeKey CostCenter view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Metadata.allowExtensions true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea Org. Value
KEY CostCenter kostl Substitute CC
KEY ValidityEndDate datbi Validity period
CompanyCode csks bukrs Value
_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 I_CostCenterDetail.
-- 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: IFICOSTCENTERD

CREATE VIEW I_CostCenterDetail AS
SELECT
  cast( kokrs as fis_kokrs ) AS ControllingArea,
  kostl AS CostCenter,
  datbi AS ValidityEndDate,
  csks.bukrs AS CompanyCode
FROM csks
;