I_FinancialManagementArea

DDL: I_FINANCIALMANAGEMENTAREA SQL: IFMAREA Type: view BASIC

Financial Management Area

I_FinancialManagementArea (Basic)

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

Financial Management Area · Cross Applications

I_FinancialManagementArea is a Basic CDS View (Dimension) that provides data about "Financial Management Area" in SAP S/4HANA. It reads from 1 data source (fm01) and exposes 8 fields with key field FinancialManagementArea. It has 3 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentPSM-FM-MD
CapabilitiesAnalytical Dimension, 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
Description <p>This CDS view provides the master data for a financial management area (FM area), which can be used to answer the following business questions:</p> <ul> <li><p>What is the assigned company code?</p></li> <li><p>What is the FM area currency?</p></li> <li><p>Is this FM area year-dependent or non-year-dependent?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
fm01 fm01 from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Currency _Currency $projection.FinancialManagementAreaCrcy = _Currency.Currency
[1..1] I_FiscalYearVariant _FiscalYearVariant $projection.FinMgmtAreaFiscalYearVariant = _FiscalYearVariant.FiscalYearVariant
[1..*] I_FinancialManagementAreaText _Text $projection.FinancialManagementArea = _Text.FinancialManagementArea

Annotations (19)

NameValueLevelField
EndUserText.label Financial Management Area view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey FinancialManagementArea view
ObjectModel.sapObjectNodeType.name FinancialManagementArea view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.sqlViewName IFMAREA view
AbapCatalog.preserveKey true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea fikrs Financial Management Area
FinancialManagementAreaCrcy waers Financial Management Area Currency
FinMgmtAreaFiscalYearVariant ca_periv Fiscal Year Variant
CommitmentItemIsYearDependent yearpos Year-Dependent Commitment Items
FundsCenterIsTimeDependent Funds Centers Time Dependency
_Currency _Currency
_FiscalYearVariant _FiscalYearVariant
_Text _Text

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_FinancialManagementArea.
-- 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: IFMAREA

CREATE VIEW I_FinancialManagementArea AS
SELECT
  fikrs AS FinancialManagementArea,
  waers AS FinancialManagementAreaCrcy,
  ca_periv AS FinMgmtAreaFiscalYearVariant,
  yearpos AS CommitmentItemIsYearDependent,
  cast (yearctr as fmis_fc_time_dependent ) AS FundsCenterIsTimeDependent
FROM fm01
LEFT OUTER JOIN I_Currency AS _Currency ON FinancialManagementAreaCrcy = _Currency.Currency  -- association [0..1]
LEFT OUTER JOIN I_FiscalYearVariant AS _FiscalYearVariant ON FinMgmtAreaFiscalYearVariant = _FiscalYearVariant.FiscalYearVariant  -- association [1..1]
LEFT OUTER JOIN I_FinancialManagementAreaText AS _Text ON FinancialManagementArea = _Text.FinancialManagementArea  -- association [1..*]
;