I_CostCenterReplicationMapping

DDL: I_COSTCENTERREPLICATIONMAPPING SQL: IFICCTRRPMAP Type: view_entity BASIC Package: FINS_FIS_FICO

Reads csks_map

I_CostCenterReplicationMapping is a Basic CDS View that provides data about "Reads csks_map" in SAP S/4HANA. It reads from 1 data source (csks_map) and exposes 5 fields with key field CostCenterGlobalID. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
csks_map csks_map from

Annotations (7)

NameValueLevelField
Analytics.technicalName IFICCTRRPMAP view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Reads csks_map view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CostCenterGlobalID
CostCenterDisplayID csks_map dispname Cost Center
CompanyCode cocode Company Code
CostCenter cctrid Cost Center
CostCenterIsDeleted csks_map deleted Truth Value

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_CostCenterReplicationMapping.
-- 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: IFICCTRRPMAP

CREATE VIEW I_CostCenterReplicationMapping AS
SELECT
  cast( csks_map.globalid as fis_cctr_globalid ) AS CostCenterGlobalID,
  csks_map.dispname AS CostCenterDisplayID,
  cocode AS CompanyCode,
  cctrid AS CostCenter,
  csks_map.deleted AS CostCenterIsDeleted
FROM csks_map
;