I_FundType

DDL: I_FUNDTYPE SQL: IFUNDTYPE Type: view BASIC

Fund Type

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.

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
KEY FundType fund_type
GranteeMgmtFundType gm_fundtype
_FinMgmtArea _FinMgmtArea
_Text _Text
_GranteeMgmtFundType _GranteeMgmtFundType
@AbapCatalog.sqlViewName: 'IFUNDTYPE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering: { status: #ACTIVE, type: #FULL }
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Fund Type'

@VDM.viewType: #BASIC
@Analytics: {
     dataCategory: #DIMENSION,
     dataExtraction.enabled: true,
     internalName: #LOCAL
}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel: {
     representativeKey: 'FundType',
     usageType: {
         dataClass: #CUSTOMIZING,
         serviceQuality: #A,
         sizeCategory: #S
     },
     supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE,#EXTRACTION_DATA_SOURCE]
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Metadata.allowExtensions: true

define root view I_FundType
  as select from fmfundtype

  association [1..1] to I_FinancialManagementArea as _FinMgmtArea         on $projection.FinancialManagementArea = _FinMgmtArea.FinancialManagementArea
  composition [0..*] of I_FundTypeText            as _Text
  association [0..1] to I_GranteeMgmtFundType     as _GranteeMgmtFundType on $projection.GranteeMgmtFundType = _GranteeMgmtFundType.GranteeMgmtFundType

{

      @Consumption.valueHelpDefinition: [
        { entity:  { name:    'I_FinMgmtAreaStdVH',
                     element: 'FinancialManagementArea' }
        }]
      @ObjectModel.foreignKey.association: '_FinMgmtArea'
      @Search.defaultSearchElement: true
  key fm_area     as FinancialManagementArea,
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key fund_type   as FundType,
      @ObjectModel.foreignKey.association: '_GranteeMgmtFundType'
      @Search.defaultSearchElement: true
      gm_fundtype as GranteeMgmtFundType,

      _FinMgmtArea,
      _Text,
      _GranteeMgmtFundType

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FMFUNDTYPE"
],
"ASSOCIATED":
[
"I_FINANCIALMANAGEMENTAREA",
"I_FUNDTYPETEXT",
"I_GRANTEEMGMTFUNDTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/