I_FinancialManagementAreaText
Financial Management Area - Text
I_FinancialManagementAreaText is a Basic CDS View that provides data about "Financial Management Area - Text" in SAP S/4HANA. It reads from 1 data source (fm01t) and exposes 5 fields with key fields FinancialManagementArea, Language. It has 2 associations to related views. Part of development package PSM_S4C_BASIS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fm01t | fm01t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_FinancialManagementArea | _FinancialManagementArea | $projection.FinancialManagementArea = _FinancialManagementArea.FinancialManagementArea |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Financial Management Area - Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.internalName | #LOCAL | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | FinancialManagementArea | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.sqlViewName | IFMAREATEXT | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FinancialManagementArea | fikrs | ||
| KEY | Language | spras | ||
| FinancialManagementAreaName | fitxt | |||
| _Language | _Language | |||
| _FinancialManagementArea | _FinancialManagementArea |
@EndUserText.label: 'Financial Management Area - Text'
@Analytics: {
dataExtraction.enabled: true,
internalName: #LOCAL
}
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'FinancialManagementArea'
@ObjectModel.usageType: {
sizeCategory: #S,
dataClass: #MASTER,
serviceQuality: #A
}
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #EXTRACTION_DATA_SOURCE]
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.buffering: { status: #ACTIVE, type: #FULL }
@AbapCatalog.sqlViewName: 'IFMAREATEXT'
define view I_FinancialManagementAreaText
as select from fm01t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_FinancialManagementArea as _FinancialManagementArea on $projection.FinancialManagementArea = _FinancialManagementArea.FinancialManagementArea //for authorization check
{
key fikrs as FinancialManagementArea,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key spras as Language,
@Semantics.text: true
fitxt as FinancialManagementAreaName,
_Language,
_FinancialManagementArea
};
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