E_CnsldtnFSItemByTimeVersion

DDL: E_CNSLDTNFSITEMBYTIMEVERSION Type: view_entity 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 (6)

NameValueLevelField
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 Consolidation COA
KEY CnsldtnFinancialStatementItem fincs_fsiassgmt item Task ID
KEY CnsldtnFSItemAttributeVersion fincs_fsiassgmt iatvs FS Item Attributes Version
KEY FromFiscalYearPeriod

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view E_CnsldtnFSItemByTimeVersion.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW E_CnsldtnFSItemByTimeVersion AS
SELECT
  Persistence.itclg AS ConsolidationChartOfAccounts,
  Persistence.item AS CnsldtnFinancialStatementItem,
  Persistence.iatvs AS CnsldtnFSItemAttributeVersion,
  cast (Persistence.fromyearper as fins_fyearperiod) AS FromFiscalYearPeriod
FROM fincs_fsiassgmt AS Persistence
;