P_Matrix_GroupStructurePerYear

DDL: P_MATRIX_GROUPSTRUCTUREPERYEAR SQL: PMCGSPERYEAR Type: view COMPOSITE Package: FIN_CS_ANALYTICS_FOUNDATION

Matrix Consolidation: Group Structure Per Year

P_Matrix_GroupStructurePerYear is a Composite CDS View that provides data about "Matrix Consolidation: Group Structure Per Year" in SAP S/4HANA. It reads from 2 data sources (I_CnsldtnGroupStructure, P_Matrix_MaxPeriodPerYear) and exposes 5 fields. Part of development package FIN_CS_ANALYTICS_FOUNDATION.

Data Sources (2)

SourceAliasJoin Type
I_CnsldtnGroupStructure GroupStructure from
P_Matrix_MaxPeriodPerYear MaxPeriodPerYear inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PMCGSPERYEAR view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
ConsolidationDimension I_CnsldtnGroupStructure ConsolidationDimension
ConsolidationStructureVersion I_CnsldtnGroupStructure ConsolidationStructureVersion
FiscalYear P_Matrix_MaxPeriodPerYear FiscalYear
ConsolidationGroup I_CnsldtnGroupStructure ConsolidationGroup
ConsolidationUnit I_CnsldtnGroupStructure ConsolidationUnit
@AbapCatalog.sqlViewName: 'PMCGSPERYEAR'
@AbapCatalog.compiler.compareFilter: true

@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private:true
@ClientHandling.algorithm:#SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #XL
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true

define view P_Matrix_GroupStructurePerYear
  as select from I_CnsldtnGroupStructure   as GroupStructure
    inner join   P_Matrix_MaxPeriodPerYear as MaxPeriodPerYear on  FromFiscalYearPeriod <= FiscalYearPeriod
                                                               and ToFiscalYearPeriod   >= FiscalYearPeriod
{
  GroupStructure.ConsolidationDimension,
  GroupStructure.ConsolidationStructureVersion,
  MaxPeriodPerYear.FiscalYear,
  GroupStructure.ConsolidationGroup,
  GroupStructure.ConsolidationUnit
}