E_CnsldtnFSItemByTimeVersion

DDL: E_CNSLDTNFSITEMBYTIMEVERSION SQL: ECSFSITEMATVD Type: view EXTENSION

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)

SourceAliasJoin Type
fincs_fsiassgmt Persistence from

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/