I_FundType

DDL: I_FUNDTYPE SQL: IFUNDTYPE Type: view BASIC

Fund Type

I_FundType (Basic)

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

Cross Applications

I_FundType is a Basic CDS View (Dimension) that provides data about "Fund Type" in SAP S/4HANA. It reads from 1 data source (fmfundtype) and exposes 6 fields with key fields FinancialManagementArea, FundType. 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

Documentation

Data Sources (1)

SourceAliasJoin Type
fmfundtype fmfundtype from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_FinancialManagementArea _FinMgmtArea $projection.FinancialManagementArea = _FinMgmtArea.FinancialManagementArea
[0..1] I_GranteeMgmtFundType _GranteeMgmtFundType $projection.GranteeMgmtFundType = _GranteeMgmtFundType.GranteeMgmtFundType
[0..*] I_FundTypeText _Text

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName IFUNDTYPE view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Fund Type view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.representativeKey FundType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Metadata.allowExtensions true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea fm_area Financial Management Area
KEY FundType fund_type FM Fund Type
GranteeMgmtFundType gm_fundtype Fund Type for Grants Management
_FinMgmtArea _FinMgmtArea
_Text _Text
_GranteeMgmtFundType _GranteeMgmtFundType

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_FundType.
-- 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: IFUNDTYPE

CREATE VIEW I_FundType AS
SELECT
  fm_area AS FinancialManagementArea,
  fund_type AS FundType,
  gm_fundtype AS GranteeMgmtFundType
FROM fmfundtype
LEFT OUTER JOIN I_FinancialManagementArea AS _FinMgmtArea ON FinancialManagementArea = _FinMgmtArea.FinancialManagementArea  -- association [1..1]
LEFT OUTER JOIN I_GranteeMgmtFundType AS _GranteeMgmtFundType ON GranteeMgmtFundType = _GranteeMgmtFundType.GranteeMgmtFundType  -- association [0..1]
LEFT OUTER JOIN I_FundTypeText AS _Text ON /* condition not available in parsed metadata */  -- association [0..*]
;