R_FundCoreTextTP
Fund Core Text Transactional Processing
R_FundCoreTextTP is a Transactional CDS View that provides data about "Fund Core Text Transactional Processing" in SAP S/4HANA. It reads from 1 data source (I_FundText) and exposes 6 fields with key fields FinancialManagementArea, Fund, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_FundText | I_FundText | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Fund Core Text Transactional Processing | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #TEXT | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FinancialManagementArea | FinancialManagementArea | ||
| KEY | Fund | Fund | ||
| KEY | Language | Language | ||
| FundName | FundName | |||
| FundDescription | FundDescription | |||
| _Fund | _Fund |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Fund Core Text Transactional Processing'
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.dataCategory:#TEXT
define view entity R_FundCoreTextTP as select from I_FundText
association to parent R_FundCoreTP as _Fund on $projection.Fund = _Fund.Fund
and $projection.FinancialManagementArea = _Fund.FinancialManagementArea
{
key FinancialManagementArea,
key Fund,
@Semantics.language:true
key Language,
@Semantics.text:true
FundName,
@Semantics.text:true
FundDescription,
/* Associations */
_Fund
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FUNDTEXT"
],
"ASSOCIATED":
[
"R_FUNDCORETP"
],
"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