A_FundText

DDL: A_FUNDTEXT Type: view_entity BASIC

Fund Text

A_FundText is a Basic CDS View that provides data about "Fund Text" in SAP S/4HANA. It reads from 1 data source (I_FundText) and exposes 6 fields with key fields Language, FinancialManagementArea, Fund. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_FundText I_FundText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_Fund _Fund $projection.FinancialManagementArea = _Fund.FinancialManagementArea and $projection.Fund = _Fund.Fund

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Fund Text view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
OData.entityType.name FundText_Type view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY FinancialManagementArea FinancialManagementArea
KEY Fund Fund
FundName FundName
FundDescription FundDescription
_Fund _Fund
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Fund Text'
@VDM.viewType: #BASIC
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #S
}
@ObjectModel.dataCategory: #TEXT
@OData.entityType.name: 'FundText_Type'
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
define view entity A_FundText
  as select from I_FundText

  association [1..1] to A_Fund as _Fund on  $projection.FinancialManagementArea = _Fund.FinancialManagementArea
                                        and $projection.Fund                    = _Fund.Fund

{
      @Semantics.language:true
  key Language,
  key FinancialManagementArea,
  key Fund,
      @Semantics.text: true
      FundName,
      @Semantics.text: true
      FundDescription,

      _Fund
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FUNDTEXT"
],
"ASSOCIATED":
[
"A_FUND"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/