P_PreviousFundsCenter

DDL: P_PREVIOUSFUNDSCENTER Type: view COMPOSITE Package: FMMD_CORE

Previous Funds Center

P_PreviousFundsCenter is a Composite CDS View that provides data about "Previous Funds Center" in SAP S/4HANA. It reads from 1 data source (I_FundsCenter) and exposes 3 fields with key fields FinancialManagementArea, FundsCenter. Part of development package FMMD_CORE.

Data Sources (1)

SourceAliasJoin Type
I_FundsCenter I_FundsCenter from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PFUNDSCENTERP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.representativeKey FundsCenter view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea FinancialManagementArea FM Area
KEY FundsCenter FundsCenter Funds Center
ValidityEndDate

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 P_PreviousFundsCenter.
-- 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.
-- Parameters: P_KeyDate : sydate

CREATE VIEW P_PreviousFundsCenter AS
SELECT
  FinancialManagementArea,
  FundsCenter,
  max( ValidityEndDate ) AS ValidityEndDate
FROM I_FundsCenter
;