I_CnsldtnChartOfAccounts

DDL: I_CNSLDTNCHARTOFACCOUNTS Type: view BASIC

Consolidation Chart of Accounts

I_CnsldtnChartOfAccounts (Basic)

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

Consolidation Chart Of Accounts · Group Reporting

I_CnsldtnChartOfAccounts is a Basic CDS View (Dimension) that provides data about "Consolidation Chart of Accounts" in SAP S/4HANA. It reads from 1 data source (tf120) and exposes 2 fields with key field ConsolidationChartOfAccounts. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
Purpose
This CDS view provides access to the master data of a consolidation chart of accounts in group reporting. A consolidation chart of accounts (COA) is a systematic grouping of financial statement (FS) items that belong together and are used for group reporting. This CDS view provides the data to answer the following business questions: What consolidation COAs exist?

Prerequisites
Authorizations Users who want to use this CDS view must have the following authorization objects assigned: FI_CS_ITCLG (Consolidation Chart of Accounts) Configuration ACTVT = F4 or 03 (value help, read)

Structure
Important Fields Important fields in this view include the following: Field Name Description ConsolidationChartOfAccounts A consolidation chart of accounts

Data Extraction
Data Extraction Type Full (physical deletions are possible in source tables)

View on SAP Help Portal →

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, Data Source for Data Extraction, Analytical Dimension
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the master data of a consolidation chart of accounts in group reporting.</p> <p>A consolidation chart of accounts (COA) is a systematic grouping of financial statement (FS) items that belong together and are used for group reporting. </p> <p>This CDS view provides the data to answer the following business questions: </p> <ul> <li><p>What consolidation COAs exist? </p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
tf120 tf120 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnChartOfAccountsT _Text $projection.ConsolidationChartOfAccounts = _Text.ConsolidationChartOfAccounts

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName ICCCHOFACC view
AbapCatalog.compiler.compareFilter true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #CHECK view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ConsolidationChartOfAccounts view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name ConsolidationChartOfAccounts view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Chart of Accounts view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationChartOfAccounts Consolidation Chart of Accounts
_Text _Text

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_CnsldtnChartOfAccounts.
-- 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_CnsldtnChartOfAccounts AS
SELECT
  cast(itclg as fincs_conschartofaccounts preserving type ) AS ConsolidationChartOfAccounts
FROM tf120
LEFT OUTER JOIN I_CnsldtnChartOfAccountsT AS _Text ON ConsolidationChartOfAccounts = _Text.ConsolidationChartOfAccounts  -- association [0..*]
;