I_CnsldtnSubitemText_2

DDL: I_CNSLDTNSUBITEMTEXT_2 Type: view_entity BASIC Package: FIN_CS_MD_SUBITEM

Consolidation Subitem - Text

I_CnsldtnSubitemText_2 (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public 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. Part of development package FIN_CS_MD_SUBITEM.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessGroup Reporting
Application ComponentFIN-CS-MD-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Data Source in SQL Select,Association Target for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageGroup Reporting for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides access to the consolidation subitem. </p> This CDS view provides the data to answer the following business questions:<ul> <li><p>To which subitem category is a subitem assigned?</p></li> <li><p>What are the associated nodes in a subitem hierarchy?</p></li> </ul> Here are some example values for Subitem Category 1 (transaction type):<ul> <li><p>900: Opening Balance </p></li> <li><p>901: Incoming Units </p></li> <li><p>906: Dividends </p></li> <li><p>909: Change in Accounting Policies </p></li> <li><p>915: Net Variation </p></li> <li><p>920: Increase / Purchase </p></li> <li><p>950: Reclassification </p></li> <li><p>955: Fair Value </p></li> <li><p>980: Currency Translation Adjustment </p></li> </ul> Here are some example values for Subitem Category 2 (functional area):<ul> <li><p>YB10: Sales Revenue </p></li> <li><p>YB18: Cost of Goods Sold</p></li> <li><p>YB20: Production </p></li> <li><p>YB40: Administration </p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

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]
;