I_CnsldtnVersionT

DDL: I_CNSLDTNVERSIONT Type: view BASIC

Consolidation Version - Text

I_CnsldtnVersionT (Basic)

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

ConsolidationVersionText · Group Reporting

I_CnsldtnVersionT is a Basic CDS View that provides data about "Consolidation Version - Text" in SAP S/4HANA. It reads from 1 data source (tf201) and exposes 5 fields with key fields ConsolidationVersion, Language. It has 2 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, Data Source for Data Extraction, Language-Dependent Text
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tf201 _tf201 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_CnsldtnVersion _CnsldtnVersion $projection.ConsolidationVersion = _CnsldtnVersion.ConsolidationVersion

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName ICCVERSIONT 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
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY 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 ConsolidationVersion view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name ConsolidationVersionText view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Version - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationVersion Consolidation Version
KEY Language tf201 langu Primary lang.
ConsolidationVersionText Consolidation Version Description
_Language _Language
_CnsldtnVersion _CnsldtnVersion

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_CnsldtnVersionT.
-- 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_CnsldtnVersionT AS
SELECT
  cast ( _tf201.rvers as fincs_consolidationversion preserving type ) AS ConsolidationVersion,
  _tf201.langu AS Language,
  cast (_tf201.txt as fincs_consolidationversiontext preserving type ) AS ConsolidationVersionText
FROM tf201 AS _tf201
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnVersion AS _CnsldtnVersion ON ConsolidationVersion = _CnsldtnVersion.ConsolidationVersion  -- association [1..1]
;