I_CnsldtnFinStmntItemText

DDL: I_CNSLDTNFINSTMNTITEMTEXT Type: view BASIC

Financial Statement Item - Text

I_CnsldtnFinStmntItemText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Group Reporting

I_CnsldtnFinStmntItemText is a Basic CDS View that provides data about "Financial Statement Item - Text" in SAP S/4HANA. It reads from 1 data source (fincs_fsitemt) and exposes 9 fields with key fields ConsolidationChartOfAccounts, FinancialStatementItem, Language. It has 3 associations to related views.

SAP API Hub

StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD
CapabilitiesData Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source in SQL Select, Language-Dependent Text
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
fincs_fsitemt fincs_fsitemt from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnChartOfAccountsT _ChartOfAccountsText $projection.ConsolidationChartOfAccounts = _ChartOfAccountsText.ConsolidationChartOfAccounts
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_CnsldtnChartOfAccounts _ChartOfAccounts $projection.ConsolidationChartOfAccounts = _ChartOfAccounts.ConsolidationChartOfAccounts

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName ICNSLDTNFSITEMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey FinancialStatementItem view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
EndUserText.label Financial Statement Item - Text view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationChartOfAccounts itclg Consolidation Chart of Accounts
KEY FinancialStatementItem Financial Statement Item
KEY Language langu Primary lang.
FinancialStatementItemText Short Text
FinancialStatementItemMdmText Medium Text
FinancialStatementItemLongText Long Description
_ChartOfAccounts _ChartOfAccounts
_Language _Language
_ChartOfAccountsText _ChartOfAccountsText

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 I_CnsldtnFinStmntItemText.
-- 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 I_CnsldtnFinStmntItemText AS
SELECT
  itclg AS ConsolidationChartOfAccounts,
  cast ( item as fincs_fsi_item ) AS FinancialStatementItem,
  langu AS Language,
  cast ( txtsh as fincs_name ) AS FinancialStatementItemText,
  cast ( txtmi as fincs_desc ) AS FinancialStatementItemMdmText,
  cast ( txtlg as fincs_longdesc ) AS FinancialStatementItemLongText
FROM fincs_fsitemt
LEFT OUTER JOIN I_CnsldtnChartOfAccountsT AS _ChartOfAccountsText ON ConsolidationChartOfAccounts = _ChartOfAccountsText.ConsolidationChartOfAccounts  -- association [0..*]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_CnsldtnChartOfAccounts AS _ChartOfAccounts ON ConsolidationChartOfAccounts = _ChartOfAccounts.ConsolidationChartOfAccounts  -- association [0..1]
;