I_FinancialDataSourceT
Financial Data Source - Text
I_FinancialDataSourceT is a Basic CDS View that provides data about "Financial Data Source - Text" in SAP S/4HANA. It reads from 1 data source (ffs_d_datasrce_t) and exposes 6 fields with key fields Language, FinancialDataSource. It has 1 association to related views. Part of development package FIN_FS_ACCDIM_DB.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ffs_d_datasrce_t | ffs_d_datasrce_t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Financial Data Source - Text | view | |
| ObjectModel.representativeKey | FinancialDataSource | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Search.searchable | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | langu | ||
| KEY | FinancialDataSource | datasource_id | ||
| FinancialDataSourceName | ||||
| LanguageName | ||||
| _FinancialDataSource | _FinancialDataSource | |||
| _Language | _Language |
@EndUserText.label: 'Financial Data Source - Text'
@ObjectModel:{
representativeKey: 'FinancialDataSource',
dataCategory: #TEXT,
usageType: {
serviceQuality: #A,
sizeCategory: #M,
dataClass: #MASTER
},
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#SEARCHABLE_ENTITY]
}
@VDM :{
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Search.searchable: true
@AccessControl.authorizationCheck:#MANDATORY
@Metadata.ignorePropagatedAnnotations: true
define view entity I_FinancialDataSourceT
as select from ffs_d_datasrce_t
association to parent I_FinancialDataSource as _FinancialDataSource on $projection.FinancialDataSource = _FinancialDataSource.FinancialDataSource
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
@ObjectModel.text.element: ['LanguageName']
key langu as Language,
@ObjectModel.foreignKey.association: '_FinancialDataSource'
@ObjectModel.text.element: ['FinancialDataSourceName']
key datasource_id as FinancialDataSource,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@Semantics.text: true
cast( datasource_tt as ffs_vdm_datasource_tt preserving type ) as FinancialDataSourceName,
_Language._Text[Language = $session.system_language].LanguageName,
/* Associations */
_FinancialDataSource,
_Language
}
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