A_FundCoreText
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)
| Source | Alias | Join Type |
|---|---|---|
| R_FundCoreTextTP | R_FundCoreTextTP | projection |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_FUNDCORE | API_FUNDCORE | V2 | C2 | C1 |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA