C_APMinFiscalPeriodStartDate

DDL: C_APMINFISCALPERIODSTARTDATE SQL: CAPMINFPSTARTDT Type: view CONSUMPTION Package: ODATA_APOVERVIEWPAGE

Minimal Fiscal Period Start Date

C_APMinFiscalPeriodStartDate is a Consumption CDS View that provides data about "Minimal Fiscal Period Start Date" in SAP S/4HANA. It reads from 1 data source (I_FiscalYearPeriodForCmpnyCode) and exposes 1 field. Part of development package ODATA_APOVERVIEWPAGE.

Data Sources (1)

SourceAliasJoin Type
I_FiscalYearPeriodForCmpnyCode _FYP from

Parameters (2)

NameTypeDefault
P_TodayDate sydate
P_NumberOfMonths num_of_months

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CAPMINFPSTARTDT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Minimal Fiscal Period Start Date view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (1)

KeyFieldSource TableSource FieldDescription
FiscalPeriodStartDate

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 C_APMinFiscalPeriodStartDate.
-- 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: CAPMINFPSTARTDT
-- Parameters: P_TodayDate : sydate, P_NumberOfMonths : num_of_months

CREATE VIEW C_APMinFiscalPeriodStartDate AS
SELECT
  min(FiscalPeriodStartDate) AS FiscalPeriodStartDate
FROM I_FiscalYearPeriodForCmpnyCode AS _FYP
;