C_CnsldtnGroupHierarchyVH

DDL: C_CNSLDTNGROUPHIERARCHYVH Type: view_entity CONSUMPTION Package: FIN_CS_MD_GROUP

Consolidation Group Hierarchy

C_CnsldtnGroupHierarchyVH is a Consumption CDS View that provides data about "Consolidation Group Hierarchy" in SAP S/4HANA. It reads from 4 data sources (I_CnsldtnVersion, I_FiscalYearPeriod, I_CnsldtnGroupHierarchyVH, I_CnsldtnGroupTmprlNodeHierVH) and exposes 5 fields with key field ConsolidationGroupHierarchy. It is exposed through 4 OData services (ASQL_F3733, ASQL_F3766, ASQL_F8967, ...). It is used in 2 Fiori applications: Manage Consolidation Group Structure - Group View, Manage Consolidation Group Structure - Unit View. Part of development package FIN_CS_MD_GROUP.

Data Sources (4)

SourceAliasJoin Type
I_CnsldtnVersion _CnsldtnVersion inner
I_FiscalYearPeriod _FYP inner
I_CnsldtnGroupHierarchyVH _Source from
I_CnsldtnGroupTmprlNodeHierVH _Source union

Parameters (2)

NameTypeDefault
P_ConsolidationVersion fincs_consolidationversion
P_FiscalYearPeriod fins_fyearperiod

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ConsolidationGroupHierarchy view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
VDM.viewType #CONSUMPTION view
Search.searchable true view
EndUserText.label Consolidation Group Hierarchy view

OData Services (4)

ServiceBindingVersionContractRelease
ASQL_F3733 ASQL_F3733 C2 NOT_RELEASED
ASQL_F3766 ASQL_F3766 C2 NOT_RELEASED
ASQL_F8967 ASQL_F8967 C2 NOT_RELEASED
UI_FINCS_GRPSTR_MANAGE UI_FINCS_GRPSTR_MANAGE V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F3733 Manage Consolidation Group Structure - Group View Transactional An application to manage assignments of consolidation units to a consolidation group, including maintenance of consolidation group specific settings of consolidation units (such as period of first consolidation, period of divestiture, consolidation method).
F3766 Manage Consolidation Group Structure - Unit View Transactional An application to manage assignments of a consolidation unit to one or several consolidation groups, including maintenance of consolidation group specific settings of the consolidation unit (such as period of first consolidation, period of divestiture, consolidation method).

Manage Consolidation Group Structure - Group View

Business Role: Administrator - Group Reporting

With this app, you manage the assignments of consolidation units to consolidation groups and make consolidation relevant settings for these assignments, such as the period of the first consolidation, the period of the divestiture, and the consolidation method.

Manage Consolidation Group Structure - Unit View

Business Role: Administrator - Group Reporting

With this app, you manage the assignments of consolidation units to consolidation groups and make consolidation relevant settings for these assignments, such as the period of the first consolidation, the period of the divestiture, and the consolidation method.

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ConsolidationGroupHierarchy I_CnsldtnGroupTmprlNodeHierVH ConsolidationGroupHierarchy
ConsolidationGroupHierText I_CnsldtnGroupTmprlNodeHierVH ConsolidationGroupHierText
ConsolidationGroupHierarchy
ConsolidationGroupHierText I_CnsldtnGroupTmprlNodeHierVH ConsolidationGroupHierText
ConsolidationUnitHierarchy I_CnsldtnGroupTmprlNodeHierVH ConsolidationUnitHierarchy

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 C_CnsldtnGroupHierarchyVH.
-- 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.
-- Parameters: P_ConsolidationVersion : fincs_consolidationversion, P_FiscalYearPeriod : fins_fyearperiod

CREATE VIEW C_CnsldtnGroupHierarchyVH AS
SELECT
  _Source.ConsolidationGroupHierarchy AS ConsolidationGroupHierarchy,
  _Source.ConsolidationGroupHierText AS ConsolidationGroupHierText,
  _Source.ConsolidationUnitHierarchy AS ConsolidationUnitHierarchy
FROM I_CnsldtnGroupHierarchyVH AS _Source
INNER JOIN I_CnsldtnVersion AS _CnsldtnVersion ON /* join condition not captured in parsed metadata */
INNER JOIN I_FiscalYearPeriod AS _FYP ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): I_CnsldtnGroupTmprlNodeHierVH
;