P_FundsCenterValidityDate

DDL: P_FUNDSCENTERVALIDITYDATE SQL: PFISTLVALDATE Type: view BASIC

P_FundsCenterValidityDate is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (fm01, fmfctr) and exposes 7 fields with key fields FinancialManagementArea, FundsCenter, FinMgmtAreaFiscalYear. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
fm01 _FM_Area inner
fmfctr fmfctr from

Associations (1)

CardinalityTargetAliasCondition
[1] I_FiscalYearPeriod _FiscalYearPeriod _FM_Area.ca_periv = _FiscalYearPeriod.FiscalYearVariant and _FiscalYearPeriod.FiscalPeriod = '001'

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.sqlViewName PFISTLVALDATE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea fmfctr fikrs FM Area
KEY FundsCenter fmfctr fictr Funds Center
KEY FinMgmtAreaFiscalYear _FiscalYearPeriod FiscalYear G/L Fiscal Year
FiscalYearVariant fm01 ca_periv FY Variant
ValidityEndDate
FiscalYearStartDate _FiscalYearPeriod FiscalYearStartDate
FiscalYearEndDate _FiscalYearPeriod FiscalYearEndDate

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_FundsCenterValidityDate.
-- 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: PFISTLVALDATE

CREATE VIEW P_FundsCenterValidityDate AS
SELECT
  fmfctr.fikrs AS FinancialManagementArea,
  fmfctr.fictr AS FundsCenter,
  _FiscalYearPeriod.FiscalYear AS FinMgmtAreaFiscalYear,
  _FM_Area.ca_periv AS FiscalYearVariant,
  max( fmfctr.datbis ) AS ValidityEndDate,
  _FiscalYearPeriod.FiscalYearStartDate AS FiscalYearStartDate,
  _FiscalYearPeriod.FiscalYearEndDate AS FiscalYearEndDate
FROM fmfctr
INNER JOIN fm01 AS _FM_Area ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_FiscalYearPeriod AS _FiscalYearPeriod ON _FM_Area.ca_periv = _FiscalYearPeriod.FiscalYearVariant AND _FiscalYearPeriod.FiscalPeriod = '001'  -- association [1]
;