I_CnsldtnSubItem

DDL: I_CNSLDTNSUBITEM Type: view BASIC

Consolidation Subitem

I_CnsldtnSubItem (Basic)

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

Consolidation Subitem · Group Reporting

I_CnsldtnSubItem is a Basic CDS View (Dimension) that provides data about "Consolidation Subitem" in SAP S/4HANA. It reads from 1 data source (tf115) and exposes 5 fields with key fields SubItemCategory, SubItem. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
Purpose
This CDS view determines the values for a given subitem category, such as transaction types or functional areas. The subitem category together with the subitem can determine a further breakdown of the financial statement (FS) items. This definition happens in the breakdown category. This CDS view provides the data to answer the following business questions: To which subitem category is a subitem assigned? Business question What are the associated nodes in a subitem hierarchy? Here are some example values for Subitem Category 1 : 900 : Opening Balance 901 : Incoming Units 906 : Dividends 909 : Change in Accounting Policies 915 : Net Variation 920 : Increase / Purchase 950 : Reclassification 955 : Fair Value 980 : Currency Translation Adjustment Here are some example values for Subitem Category 2 : YB10 : Sales Revenue YB18 : Cost of Goods Sold YB20 : Production YB40 : Administration 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 .

Structure
Important Fields Important fields in this view include the following: Field Name Description Comment SubItemCategory Subitem Category Key SubItem Subitem Key

SAP Business Warehouse (SAP BW) Extraction
Data Extraction Type Full (physical deletions are possible in source tables) Note The corresponding DataSource (Extractor) and this CDS view may have different functionalities. For details about the DataSource, see the related documentation on the SAP Help Portal at https://help.sap.com/viewer/p/BI_CONTENT_757 under Use SAP Library BI Content . For more information about data extraction, see Extracting Data Through CDS Views to SAP BW/4HANA .

View on SAP Help Portal →

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
Description <p>This CDS view determines the values for a given subitem category, such as transaction types or functional areas. The subitem category together with the subitem can determine a further breakdown of the financial statement (FS) items. This definition happens in the breakdown category. </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>Business question</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:<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:<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
tf115 tf115 from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnSubItemText _Text $projection.SubItemCategory = _Text.SubItemCategory and $projection.SubItem = _Text.SubItem
[0..1] I_CnsldtnSubItemCategory _SubItemCategory $projection.SubItemCategory = _SubItemCategory.SubItemCategory
[0..*] I_CnsldtnSubitemHierNode _SubitemHierNode $projection.SubItemCategory = _SubitemHierNode.SubItemCategory and $projection.SubItem = _SubitemHierNode.SubItem

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName ICNSLDTNSUBITEM 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 SubItem view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name ConsolidationSubitem view
VDM.viewType #BASIC view
EndUserText.label Consolidation Subitem view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SubItemCategory Trip Schedule Type
KEY SubItem Subitem
_SubItemCategory _SubItemCategory
_SubitemHierNode _SubitemHierNode
_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_CnsldtnSubItem.
-- 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_CnsldtnSubItem AS
SELECT
  cast(sityp as fincs_subitemcategory preserving type ) AS SubItemCategory,
  cast(sitem as fincs_subitem preserving type ) AS SubItem
FROM tf115
LEFT OUTER JOIN I_CnsldtnSubItemText AS _Text ON SubItemCategory = _Text.SubItemCategory AND SubItem = _Text.SubItem  -- association [0..*]
LEFT OUTER JOIN I_CnsldtnSubItemCategory AS _SubItemCategory ON SubItemCategory = _SubItemCategory.SubItemCategory  -- association [0..1]
LEFT OUTER JOIN I_CnsldtnSubitemHierNode AS _SubitemHierNode ON SubItemCategory = _SubitemHierNode.SubItemCategory AND SubItem = _SubitemHierNode.SubItem  -- association [0..*]
;