A_FundCoreText

DDL: A_FUNDCORETEXT Type: view_entity COMPOSITE

Fund Text

A_FundCoreText is a Composite CDS View that provides data about "Fund Text" in SAP S/4HANA. It reads from 1 data source (R_FundCoreTextTP) and exposes 6 fields with key fields FinancialManagementArea, Fund, Language. It is exposed through 1 OData service (API_FUNDCORE).

Data Sources (1)

SourceAliasJoin Type
R_FundCoreTextTP R_FundCoreTextTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
OData.entityType.name FundText_Type view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Fund Text view

OData Services (1)

ServiceBindingVersionContractRelease
API_FUNDCORE API_FUNDCORE V2 C2 C1

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea FinancialManagementArea
KEY Fund Fund
KEY Language Language
FundName FundName
FundDescription FundDescription
_FundredirectedtoparentA_FundCore
@AccessControl.authorizationCheck: #CHECK

//@VDM.viewType: #BASIC

//@ObjectModel.usageType: {

//  dataClass: #MASTER,

//  serviceQuality: #A,

//  sizeCategory: #L

//}

@VDM.viewType: #COMPOSITE
@VDM.usage.type:[#TRANSACTIONAL_PROCESSING_SERVICE]

@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.dataCategory:#TEXT
@OData.entityType.name: 'FundText_Type'

// A-view annotations

@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

@EndUserText.label: 'Fund Text'
define view entity A_FundCoreText
  as projection on R_FundCoreTextTP
{
  key FinancialManagementArea,
  key Fund,
      @Semantics.language:true
  key Language,
      @Semantics.text:true
      FundName,
      @Semantics.text:true
      FundDescription,
      /* Associations */
      _Fund: redirected to parent A_FundCore
}