E_FundsCenter

DDL: E_FUNDSCENTER SQL: EIFUNDSCENTER Type: view EXTENSION

Funds Center Extension

E_FundsCenter is a Extension CDS View that provides data about "Funds Center Extension" in SAP S/4HANA. It reads from 1 data source (fmfctr) and exposes 3 fields with key fields FinancialManagementArea, FundsCenter, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
fmfctr Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EIFUNDSCENTER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Funds Center Extension view
VDM.viewType #EXTENSION view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea fmfctr fikrs FM Area
KEY FundsCenter fmfctr fictr Funds Center
KEY ValidityEndDate fmfctr datbis Valid To

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_FundsCenter.
-- 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: EIFUNDSCENTER

CREATE VIEW E_FundsCenter AS
SELECT
  Persistence.fikrs AS FinancialManagementArea,
  Persistence.fictr AS FundsCenter,
  Persistence.datbis AS ValidityEndDate
FROM fmfctr AS Persistence
;