I_CnsldtnSubitemText_2

DDL: I_CNSLDTNSUBITEMTEXT_2 Type: view_entity BASIC

Consolidation Subitem - Text

I_CnsldtnSubitemText_2 (Basic)

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

ConsolidationSubitemText · Group Reporting

I_CnsldtnSubitemText_2 is a Basic CDS View that provides data about "Consolidation Subitem - Text" in SAP S/4HANA. It reads from 1 data source (tf116) and exposes 8 fields with key fields Language, CnsldtnSubitemCategory, CnsldtnSubitem. It has 3 associations 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
tf116 _Source from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_CnsldtnSubitemCategory_2 _SubitemCategory $projection.CnsldtnSubitemCategory = _SubitemCategory.CnsldtnSubitemCategory
[1..1] I_CnsldtnSubitem_2 _Subitem $projection.CnsldtnSubitemCategory = _Subitem.CnsldtnSubitemCategory and $projection.CnsldtnSubitem = _Subitem.CnsldtnSubitem

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 CnsldtnSubitem view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name ConsolidationSubitemText view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Subitem - Text view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Language Language Key
KEY CnsldtnSubitemCategory Subitem Category
KEY CnsldtnSubitem Subitem
CnsldtnSubitemText Subitem Description
CnsldtnSubitemMediumText Subitem Description
_SubitemCategory _SubitemCategory
_Language _Language
_Subitem _Subitem

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_CnsldtnSubitemText_2.
-- 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_CnsldtnSubitemText_2 AS
SELECT
  cast(_Source.langu as spras preserving type ) AS Language,
  cast(_Source.sityp as fincs_subitemcategory preserving type ) AS CnsldtnSubitemCategory,
  cast(_Source.sitem as fincs_subitem preserving type ) AS CnsldtnSubitem,
  cast(_Source.txtsh as fincs_subitemtext preserving type ) AS CnsldtnSubitemText,
  cast(_Source.txtmi as fincs_subitemmediumtext preserving type ) AS CnsldtnSubitemMediumText
FROM tf116 AS _Source
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnSubitemCategory_2 AS _SubitemCategory ON CnsldtnSubitemCategory = _SubitemCategory.CnsldtnSubitemCategory  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnSubitem_2 AS _Subitem ON CnsldtnSubitemCategory = _Subitem.CnsldtnSubitemCategory AND CnsldtnSubitem = _Subitem.CnsldtnSubitem  -- association [1..1]
;