I_FSItemMapping
Financial Statement Item Mapping
I_FSItemMapping is a Basic CDS View (Dimension) that provides data about "Financial Statement Item Mapping" in SAP S/4HANA. It reads from 1 data source (fincs_fsimap) and exposes 2 fields with key field FSItemMappingID. It has 1 association to related views. Part of development package FIN_CS_MD_FSITEMMAPPING.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fincs_fsimap | fincs_fsimap | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_FSItemMappingT | _Text | $projection.FSItemMappingID = _Text.FSItemMappingID |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Financial Statement Item Mapping | view | |
| AbapCatalog.sqlViewName | IFSITEMMAP | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FSItemMappingID | mapping_id | ||
| _Text | _Text |
@EndUserText.label: 'Financial Statement Item Mapping'
@AbapCatalog.sqlViewName: 'IFSITEMMAP'
@VDM.viewType: #BASIC
@Analytics: {
dataCategory: #DIMENSION
// dataExtraction.enabled: true
}
@ObjectModel.representativeKey: ['FSItemMappingID']
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #S
}
define view I_FSItemMapping
as select from fincs_fsimap
association [0..*] to I_FSItemMappingT as _Text on $projection.FSItemMappingID = _Text.FSItemMappingID
{
@ObjectModel.text.association: '_Text'
key mapping_id as FSItemMappingID,
_Text
}
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