E_CnsldtnFSItemByTimeVersion
Financial Statement Item - Extension
E_CnsldtnFSItemByTimeVersion is a Extension CDS View that provides data about "Financial Statement Item - Extension" in SAP S/4HANA. It reads from 1 data source (fincs_fsiassgmt) and exposes 4 fields with key fields ConsolidationChartOfAccounts, CnsldtnFinancialStatementItem, CnsldtnFSItemAttributeVersion, FromFiscalYearPeriod.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fincs_fsiassgmt | Persistence | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ECSFSITEMATVD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.viewType | #EXTENSION | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| EndUserText.label | Financial Statement Item - Extension | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConsolidationChartOfAccounts | fincs_fsiassgmt | itclg | |
| KEY | CnsldtnFinancialStatementItem | fincs_fsiassgmt | item | |
| KEY | CnsldtnFSItemAttributeVersion | fincs_fsiassgmt | iatvs | |
| KEY | FromFiscalYearPeriod |
@AbapCatalog.sqlViewName: 'ECSFSITEMATVD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
// Do NOT add @ClientHandling.algorithm: #SESSION_VARIABLE as it prohibits self join optimization
@VDM.viewType: #EXTENSION
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #M}
}
@EndUserText.label: 'Financial Statement Item - Extension'
define view E_CnsldtnFSItemByTimeVersion
as select from fincs_fsiassgmt as Persistence
{
key Persistence.itclg as ConsolidationChartOfAccounts,
key Persistence.item as CnsldtnFinancialStatementItem,
key Persistence.iatvs as CnsldtnFSItemAttributeVersion,
key cast (Persistence.fromyearper as fins_fyearperiod) as FromFiscalYearPeriod
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FINCS_FSIASSGMT"
],
"ASSOCIATED":
[],
"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