I_CnsldtnAdhocItem

DDL: I_CNSLDTNADHOCITEM Type: view BASIC

Consolidation Ad Hoc Item

I_CnsldtnAdhocItem (Basic)

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

Adhoc Item · Group Reporting

I_CnsldtnAdhocItem is a Basic CDS View (Dimension) that provides data about "Consolidation Ad Hoc Item" in SAP S/4HANA. It reads from 1 data source (fincs_adhitm) and exposes 8 fields with key fields ConsolidationChartOfAccounts, CnsldtnAdhocItem. It has 4 associations to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
Purpose
This CDS view provides access to the ad hoc item in financial consolidation. Ad hoc items can be used as additional dimensions where you need to collect data values for a consolidation unit or consolidation group in group reporting. These ad hoc items facilitate the naming, collection, and reporting of a set of values that are supplemental to the modeled financial data. This CDS view provides the data to answer the following business questions: What ad hoc items exist? To which consolidation chart of accounts (COA) does an ad hoc item belong? To which ad hoc set is an ad hoc item assigned? 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 .

Prerequisites
Authorizations Users who want to use this CDS view must have the following authorization objects assigned: FI_CS_ADH (Consolidation Ad Hoc Master Data) Configuration ACTVT = F4 or 03 (value help, read)

Structure
Fields Used for Filtering The main filters are as follows: AdhocItem : This field is used to determine the ad hoc item. ConsolidationChartOfAccounts : This field is used to determine the consolidation COA. CnsldtnAdhocSet : This field is used to determine the set of all adhoc items assigned to the same adhoc set. Further Important Fields Important fields in this view include the following: Field Name Description ConsolidationChartOfAccounts A consolidation chart of accounts AdhocItem An ad hoc item CnsldtnAdhocSet An optional assignment to maximum one group of ad hoc items FinancialStatementItem The field is deprecated, its value set to initial

Data Extraction
Data Extraction Type Full (physical deletions are possible in source tables)

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

Documentation

Data Sources (1)

SourceAliasJoin Type
fincs_adhitm _AdhocItem from

Associations (4)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnChartOfAccounts _CnsldtnChartOfAccounts $projection.ConsolidationChartOfAccounts = _CnsldtnChartOfAccounts.ConsolidationChartOfAccounts
[0..1] I_CnsldtnAdhocSet _CnsldtnAdhocSet $projection.ConsolidationChartOfAccounts = _CnsldtnAdhocSet.ConsolidationChartOfAccounts and $projection.CnsldtnAdhocSet = _CnsldtnAdhocSet.CnsldtnAdhocSet
[1..1] I_CnsldtnFinStmntItem _CnsldtnFinStmntItem $projection.ConsolidationChartOfAccounts = _CnsldtnFinStmntItem.ConsolidationChartOfAccounts and $projection.FinancialStatementItem = _CnsldtnFinStmntItem.FinancialStatementItem
[0..*] I_CnsldtnAdhocItemText _Text $projection.ConsolidationChartOfAccounts = _Text.ConsolidationChartOfAccounts and $projection.CnsldtnAdhocItem = _Text.CnsldtnAdhocItem

Annotations (24)

NameValueLevelField
AbapCatalog.sqlViewName ICSADHITM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 2 view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey CnsldtnAdhocItem view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name AdhocItem view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Ad Hoc Item view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationChartOfAccounts Consolidation Chart of Accounts
KEY CnsldtnAdhocItem fincs_adhitm adhocitem Ad Hoc Item
CnsldtnAdhocSet fincs_adhitm adhocset Ad Hoc Set
FinancialStatementItem Consolidation Financial Statement Item
_CnsldtnChartOfAccounts _CnsldtnChartOfAccounts
_CnsldtnAdhocSet _CnsldtnAdhocSet
_Text _Text
_CnsldtnFinStmntItem _CnsldtnFinStmntItem

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_CnsldtnAdhocItem.
-- 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_CnsldtnAdhocItem AS
SELECT
  cast(_AdhocItem.itclg as fincs_conschartofaccounts preserving type ) AS ConsolidationChartOfAccounts,
  _AdhocItem.adhocitem AS CnsldtnAdhocItem,
  _AdhocItem.adhocset AS CnsldtnAdhocSet,
  cast ( '' as fincs_md_finstatementitem ) AS FinancialStatementItem
FROM fincs_adhitm AS _AdhocItem
LEFT OUTER JOIN I_CnsldtnChartOfAccounts AS _CnsldtnChartOfAccounts ON ConsolidationChartOfAccounts = _CnsldtnChartOfAccounts.ConsolidationChartOfAccounts  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnAdhocSet AS _CnsldtnAdhocSet ON ConsolidationChartOfAccounts = _CnsldtnAdhocSet.ConsolidationChartOfAccounts AND CnsldtnAdhocSet = _CnsldtnAdhocSet.CnsldtnAdhocSet  -- association [0..1]
LEFT OUTER JOIN I_CnsldtnFinStmntItem AS _CnsldtnFinStmntItem ON ConsolidationChartOfAccounts = _CnsldtnFinStmntItem.ConsolidationChartOfAccounts AND FinancialStatementItem = _CnsldtnFinStmntItem.FinancialStatementItem  -- association [1..1]
LEFT OUTER JOIN I_CnsldtnAdhocItemText AS _Text ON ConsolidationChartOfAccounts = _Text.ConsolidationChartOfAccounts AND CnsldtnAdhocItem = _Text.CnsldtnAdhocItem  -- association [0..*]
;