A_CnsldtnGroupStructure
Consolidation Group Structure
A_CnsldtnGroupStructure is a Composite CDS View that provides data about "Consolidation Group Structure" in SAP S/4HANA. It reads from 1 data source (R_CnsldtnGroupStructureTP) and exposes 10 fields with key fields ConsolidationGroup, ConsolidationUnit, ConsolidationVersion, GroupStrucFromFiscalYearPeriod. It is exposed through 1 OData service (API_CNSLDTNGROUPSTRUCTURE).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_CnsldtnGroupStructureTP | R_CnsldtnGroupStructureTP | projection |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| OData.entityType.name | ConsolidationGroupStructure_Type | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #COMPOSITE | view | |
| Search.searchable | true | view | |
| EndUserText.label | Consolidation Group Structure | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_CNSLDTNGROUPSTRUCTURE | API_CNSLDTNGROUPSTRUCTURE | V4 | C2 | C1 |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ConsolidationGroup | _Source | ConsolidationGroup | |
| KEY | ConsolidationUnit | _Source | ConsolidationUnit | |
| KEY | ConsolidationVersion | _Source | ConsolidationVersion | |
| KEY | GroupStrucFromFiscalYearPeriod | _Source | GroupStrucFromFiscalYearPeriod | |
| GroupStrucToFiscalYearPeriod | _Source | GroupStrucToFiscalYearPeriod | ||
| FirstCnsldtnFiscalYearPeriod | _Source | FirstCnsldtnFiscalYearPeriod | ||
| FirstCnsldtnIsAtEndOfPeriod | _Source | FirstCnsldtnIsAtEndOfPeriod | ||
| DivestitureFiscalYearPeriod | _Source | DivestitureFiscalYearPeriod | ||
| DivestitureIsAtBeginOfPeriod | _Source | DivestitureIsAtBeginOfPeriod | ||
| DivestitureIsDueToMerger | _Source | DivestitureIsDueToMerger |
@AccessControl: {
authorizationCheck: #MANDATORY
}
@Metadata: {
ignorePropagatedAnnotations: true
}
@ObjectModel: {
usageType: {
dataClass: #MASTER,
serviceQuality: #C,
sizeCategory: #S
}
}
@OData.entityType.name: 'ConsolidationGroupStructure_Type'
@VDM: {
lifecycle.contract.type: #PUBLIC_REMOTE_API,
viewType: #COMPOSITE,
usage.type: [#TRANSACTIONAL_PROCESSING_SERVICE]
}
@Search.searchable: true
@EndUserText.label: 'Consolidation Group Structure'
define root view entity A_CnsldtnGroupStructure
provider contract transactional_query
as projection on R_CnsldtnGroupStructureTP as _Source
{
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
key _Source.ConsolidationGroup,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
key _Source.ConsolidationUnit,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
key _Source.ConsolidationVersion,
@Semantics.fiscal.yearPeriod: true
key _Source.GroupStrucFromFiscalYearPeriod,
@Semantics.fiscal.yearPeriod: true
_Source.GroupStrucToFiscalYearPeriod,
@Semantics.fiscal.yearPeriod: true
_Source.FirstCnsldtnFiscalYearPeriod,
_Source.FirstCnsldtnIsAtEndOfPeriod,
@Semantics.fiscal.yearPeriod: true
_Source.DivestitureFiscalYearPeriod,
_Source.DivestitureIsAtBeginOfPeriod,
_Source.DivestitureIsDueToMerger,
/* associations for transactional processing */
_CnsldtnGrpStrucMethAssgmt as _CnsldtnGrpStrucMethAssgmt : redirected to composition child A_CnsldtnGrpStrucMethAssgmt
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA