I_CnsldtnPostingLevelText_3

DDL: I_CNSLDTNPOSTINGLEVELTEXT_3 Type: view_entity BASIC

Consolidation Posting Level - Text

I_CnsldtnPostingLevelText_3 (Basic)

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

ConsolidationPostingLevelText · Group Reporting

I_CnsldtnPostingLevelText_3 is a Basic CDS View that provides data about "Consolidation Posting Level - Text" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomainText) and exposes 6 fields with key fields Language, ConsolidationPostingLevel. 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, Data Source in SQL Select, Association Target for Defining CDS Entities, Language-Dependent Text, Data Source for Data Extraction
PackageGroup Reporting for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
P_CnsldtnDomainText P_CnsldtnDomainText from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnPostingLevel_2 _PostingLevel $projection.ConsolidationPostingLevel = _PostingLevel.ConsolidationPostingLevel

Annotations (14)

NameValueLevelField
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ConsolidationPostingLevel view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name ConsolidationPostingLevelText view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Posting Level - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language Language Key
KEY ConsolidationPostingLevel Posting Level
ConsolidationPostingLevelText _Source DomainValueText Description
DomainValue _Source DomainValue Values for Domains: Single Value/Lower Limit
_Language _Source _Language
_PostingLevel _PostingLevel

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_CnsldtnPostingLevelText_3.
-- 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_CnsldtnPostingLevelText_3 AS
SELECT
  cast(_Source.Language as spras preserving type ) AS Language,
  cast(left(_Source.DomainValue, 2) as fincs_postinglevel preserving type ) AS ConsolidationPostingLevel,
  _Source.DomainValueText AS ConsolidationPostingLevelText,
  _Source.DomainValue AS DomainValue,
  _Source._Language AS _Language
FROM P_CnsldtnDomainText
LEFT OUTER JOIN I_CnsldtnPostingLevel_2 AS _PostingLevel ON ConsolidationPostingLevel = _PostingLevel.ConsolidationPostingLevel  -- association [1..1]
;