I_FiscalYearForFinMgmtArea

DDL: I_FISCALYEARFORFINMGMTAREA SQL: IFY4FMA Type: view BASIC

Fiscal Year for Fin Management Area

I_FiscalYearForFinMgmtArea (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Fiscal Year · Cross Applications

I_FiscalYearForFinMgmtArea is a Basic CDS View (Dimension) that provides data about "Fiscal Year for Fin Management Area" in SAP S/4HANA. It reads from 2 data sources (I_FinancialManagementArea, I_FiscalYearForVariant) and exposes 6 fields with key fields FinancialManagementArea, FinMgmtAreaFiscalYear. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-FM-MD
CapabilitiesData Provider for Analytical Queries, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Data Extraction
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
I_FinancialManagementArea I_FinancialManagementArea inner
I_FiscalYearForVariant I_FiscalYearForVariant from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_FinancialManagementArea _FinMgmtArea $projection.FinancialManagementArea = _FinMgmtArea.FinancialManagementArea

Annotations (16)

NameValueLevelField
EndUserText.label Fiscal Year for Fin Management Area view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey FinMgmtAreaFiscalYear view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IFY4FMA view
ObjectModel.sapObjectNodeType.name FiscalYear view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea I_FinancialManagementArea FinancialManagementArea Financial Management Area
KEY FinMgmtAreaFiscalYear Fiscal Year for Financial Management Area
FinMgmtAreaFiscalYearVariant Fiscal Year Variant for Financial Management Area
FinMgmtAreaFiscalYearStartDate Start Date of Next Fiscal Year
FinMgmtAreaFiscalYearEndDate End Date of Next Fiscal Year
_FinMgmtArea _FinMgmtArea

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 I_FiscalYearForFinMgmtArea.
-- 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: IFY4FMA

CREATE VIEW I_FiscalYearForFinMgmtArea AS
SELECT
  I_FinancialManagementArea.FinancialManagementArea AS FinancialManagementArea,
  cast( I_FiscalYearForVariant.FiscalYear as fmis_fma_fiscal_year preserving type ) AS FinMgmtAreaFiscalYear,
  cast( I_FiscalYearForVariant.FiscalYearVariant as fmis_fma_fiscal_year_variant preserving type ) AS FinMgmtAreaFiscalYearVariant,
  cast( I_FiscalYearForVariant.FiscalYearStartDate as fins_next_fyear_startdate preserving type ) AS FinMgmtAreaFiscalYearStartDate,
  cast( I_FiscalYearForVariant.FiscalYearEndDate as fins_next_fyear_enddate preserving type ) AS FinMgmtAreaFiscalYearEndDate
FROM I_FiscalYearForVariant
INNER JOIN I_FinancialManagementArea ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_FinancialManagementArea AS _FinMgmtArea ON FinancialManagementArea = _FinMgmtArea.FinancialManagementArea  -- association [1..1]
;