I_CnsldtnDimension

DDL: I_CNSLDTNDIMENSION Type: view BASIC

Consolidation Dimension

I_CnsldtnDimension (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_CnsldtnDimension is a Basic CDS View (Dimension) that provides data about "Consolidation Dimension" in SAP S/4HANA. It reads from 1 data source (tf150) and exposes 5 fields with key field ConsolidationDimension. It has 1 association 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, Analytical Dimension
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the master data for a dimension in financial consolidation. </p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tf150 _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnDimensionT _Text $projection.ConsolidationDimension = _Text.ConsolidationDimension

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICCDIMENSION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #NOT_ALLOWED view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ConsolidationDimension view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
EndUserText.label Consolidation Dimension view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationDimension tf150 dimen Dimension Unit
perivendasFiscalYearVariant
CnsldtnUnitMaxNmbrOfCharacters tf150 bulgh Length of the consolidation unit
CnsldtnGrpMaxNmbrOfCharacters tf150 cglgh Length of consolidation group
_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_CnsldtnDimension.
-- 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_CnsldtnDimension AS
SELECT
  _Source.dimen AS ConsolidationDimension,
  case when _Source.periv = '' then 'K4' else _Source.periv end as FiscalYearVariant AS perivendasFiscalYearVariant,
  _Source.bulgh AS CnsldtnUnitMaxNmbrOfCharacters,
  _Source.cglgh AS CnsldtnGrpMaxNmbrOfCharacters
FROM tf150 AS _Source
LEFT OUTER JOIN I_CnsldtnDimensionT AS _Text ON ConsolidationDimension = _Text.ConsolidationDimension  -- association [0..*]
;