A_FundText
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)
| Source | Alias | Join Type |
|---|---|---|
| I_FundText | I_FundText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_Fund | _Fund | $projection.FinancialManagementArea = _Fund.FinancialManagementArea and $projection.Fund = _Fund.Fund |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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