I_CnsldtnVersionRunMode

DDL: I_CNSLDTNVERSIONRUNMODE Type: view BASIC

Consolidation Version Run Mode

I_CnsldtnVersionRunMode (Basic)

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

Consolidation Version Run Mode · Group Reporting

I_CnsldtnVersionRunMode is a Basic CDS View (Dimension) that provides data about "Consolidation Version Run Mode" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomain) and exposes 3 fields with key field CnsldtnVersionRunMode. 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, Data Source for Data Extraction, Analytical Dimension
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomain P_CnsldtnDomain from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnVersionRunModeText _Text $projection.CnsldtnVersionRunMode = _Text.CnsldtnVersionRunMode

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ICSVERSRM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey CnsldtnVersionRunMode view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Consolidation Version Run Mode view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CnsldtnVersionRunMode Version Run Mode
DomainValue _Domain DomainValue Values for Domains: Single Value/Lower Limit
_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_CnsldtnVersionRunMode.
-- 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_CnsldtnVersionRunMode AS
SELECT
  cast(left(_Domain.DomainValue, 1) as fincs_versionrunmode) AS CnsldtnVersionRunMode,
  _Domain.DomainValue AS DomainValue
FROM P_CnsldtnDomain
LEFT OUTER JOIN I_CnsldtnVersionRunModeText AS _Text ON CnsldtnVersionRunMode = _Text.CnsldtnVersionRunMode  -- association [0..*]
;