F_FiscalPeriodEndDate

DDL: F_FISCALPERIODENDDATE Type: view_entity DERIVATION_FUNCTION Package: FINS_PERIOD_VDM

Fiscal Calendar End Date

F_FiscalPeriodEndDate is a CDS View that provides data about "Fiscal Calendar End Date" in SAP S/4HANA. It reads from 1 data source (I_FiscalPeriodForVariant) and exposes 4 fields with key fields FiscalYearVariant, FiscalYear, FiscalPeriod. Part of development package FINS_PERIOD_VDM.

Data Sources (1)

SourceAliasJoin Type
I_FiscalPeriodForVariant I_FiscalPeriodForVariant from

Parameters (3)

NameTypeDefault
P_FiscalYear ryear
P_FiscalPeriod fins_fiscalperiod
P_FiscalYearVariant fincs_periv

Annotations (12)

NameValueLevelField
Metadata.allowExtensions false view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #DERIVATION_FUNCTION view
VDM.viewType #DERIVATION_FUNCTION view
ObjectModel.derivationFunction.result.type #SINGLE view
ObjectModel.derivationFunction.result.multipleRecords false view
ObjectModel.derivationFunction.result.element FiscalPeriodEndDate view
EndUserText.label Fiscal Calendar End Date view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY FiscalYearVariant FiscalYearVariant FY Variant
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY FiscalPeriod FiscalPeriod Tax period
FiscalPeriodEndDate FiscalPeriodEndDate End Date

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 F_FiscalPeriodEndDate.
-- 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_FiscalYear : ryear, P_FiscalPeriod : fins_fiscalperiod, P_FiscalYearVariant : fincs_periv

CREATE VIEW F_FiscalPeriodEndDate AS
SELECT
  FiscalYearVariant,
  FiscalYear,
  FiscalPeriod,
  FiscalPeriodEndDate
FROM I_FiscalPeriodForVariant
;