I_CnsldtnApportionment

DDL: I_CNSLDTNAPPORTIONMENT Type: view BASIC

Consolidation Apportionment

I_CnsldtnApportionment (Basic)

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

Consolidation Apportionment · Group Reporting

I_CnsldtnApportionment is a Basic CDS View (Dimension) that provides data about "Consolidation Apportionment" in SAP S/4HANA. It reads from 1 data source (P_CnsldtnDomain) and exposes 4 fields with key field ConsolidationApportionment. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
Purpose
This CDS view provides access to the fixed domain values of the consolidation apportionment indicator in group reporting. The consolidation apportionment is used to indicate a data record of consolidation either as an unapportioned original record or as an apportionment record. This CDS view provides the data to answer the following business questions: Which fixed consolidation apportionment domain values exist? What are the language-dependent descriptions of the fixed consolidation apportionment domain values? 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 ConsolidationApportionment Consolidation apportionment DomainValue The original domain value of type Char10 . Carries the same value as the consolidation apportionment.

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 provides access to the fixed domain values of the consolidation apportionment indicator in group reporting. The consolidation apportionment is used to indicate a data record of consolidation either as an unapportioned original record or as an apportionment record. </p> This CDS view provides the data to answer the following business questions:<ul> <li><p>Which fixed consolidation apportionment domain values exist?</p></li> <li><p>What are the language-dependent descriptions of the fixed consolidation apportionment domain values?</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
P_CnsldtnDomain P_CnsldtnDomain from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_CnsldtnApportionmentT _Text $projection.ConsolidationApportionment = _Text.ConsolidationApportionment
[0..*] I_CnsldtnApportionmentText_2 _Text_2 $projection.ConsolidationApportionment = _Text_2.ConsolidationApportionment

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName ICCRPFLG view
AbapCatalog.compiler.compareFilter 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 ConsolidationApportionment view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name ConsolidationApportionment view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Apportionment view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationApportionment Apportionment
DomainValue _Domain DomainValue Values for Domains: Single Value/Lower Limit
_Text _Text
_Text_2 _Text_2

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_CnsldtnApportionment.
-- 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_CnsldtnApportionment AS
SELECT
  cast(left(_Domain.DomainValue, 1) as fincs_apportionment) AS ConsolidationApportionment,
  _Domain.DomainValue AS DomainValue
FROM P_CnsldtnDomain
LEFT OUTER JOIN I_CnsldtnApportionmentT AS _Text ON ConsolidationApportionment = _Text.ConsolidationApportionment  -- association [0..*]
LEFT OUTER JOIN I_CnsldtnApportionmentText_2 AS _Text_2 ON ConsolidationApportionment = _Text_2.ConsolidationApportionment  -- association [0..*]
;