A_FundCore
Fund
A_FundCore is a Composite CDS View that provides data about "Fund" in SAP S/4HANA. It reads from 1 data source (R_FundCoreTP) and exposes 11 fields with key fields FinancialManagementArea, Fund. It has 1 association to related views. It is exposed through 1 OData service (API_FUNDCORE). Part of development package PSM_S4C_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_FundCoreTP | R_FundCoreTP | projection |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | E_Fund | _Extension | $projection.Fund = _Extension.Fund and $projection.FinancialManagementArea = _Extension.FinancialManagementArea |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Fund | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| OData.entityType.name | FundCore_Type | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #COMPOSITE | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_FUNDCORE | API_FUNDCORE | V2 | C2 | C1 |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FinancialManagementArea | FinancialManagementArea | ||
| KEY | Fund | Fund | ||
| FundType | FundType | |||
| FundPeriodicity | FundPeriodicity | |||
| FundAuthznGrp | FundAuthznGrp | |||
| ValidityStartDate | ValidityStartDate | |||
| ValidityEndDate | ValidityEndDate | |||
| FundName | FundName | |||
| FundDescription | FundDescription | |||
| FundFinMgmtAreaForAuthzn | FundFinMgmtAreaForAuthzn | |||
| FundResponsibleUser | FundResponsibleUser |
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Fund'
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #L
@OData.entityType.name: 'FundCore_Type'
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@VDM.viewType: #COMPOSITE
@VDM.usage.type:[#TRANSACTIONAL_PROCESSING_SERVICE]
define root view entity A_FundCore
provider contract transactional_query
as projection on R_FundCoreTP
// association [0..*] to A_FundCoreText as _Text on $projection.Fund = _Text.Fund
// and $projection.FinancialManagementArea = _Text.FinancialManagementArea
association [0..1] to E_Fund as _Extension on $projection.Fund = _Extension.Fund
and $projection.FinancialManagementArea = _Extension.FinancialManagementArea
{
key FinancialManagementArea,
key Fund,
FundType,
FundPeriodicity,
FundAuthznGrp,
ValidityStartDate,
ValidityEndDate,
FundName,
FundDescription,
FundFinMgmtAreaForAuthzn,
FundResponsibleUser,
/* Associations */
_Text: redirected to composition child A_FundCoreText
}
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