I_CNSLDTNFUNCNLAREAHIERARCHY
Consolidation Functional Area Hierarchy
I_CNSLDTNFUNCNLAREAHIERARCHY is a CDS View in S/4HANA. Consolidation Functional Area Hierarchy. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_CnsldtnFuncnlAreaHierDir | view | from | BASIC | Combined Functional Area Hierarchy Dir |
| A_CnsldtnPartFctArHierDir | view | from | BASIC | Combined Partner Functional Area Hierarchy Directory |
@AbapCatalog:{
sqlViewName: 'ICCFAHIERARCHY',
compiler.compareFilter: true
}
@Analytics: {
dataCategory: #DIMENSION,
internalName: #LOCAL,
dataExtraction.enabled: true
}
@AccessControl:{
authorizationCheck: #CHECK
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata:{
ignorePropagatedAnnotations: true,
allowExtensions:true
}
@ObjectModel:{
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S},
representativeKey: 'CnsldtnFunctionalAreaHierarchy',
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#ANALYTICAL_DIMENSION ]
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Consolidation Functional Area Hierarchy'
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_CnsldtnFuncnlAreaHierarchy
as select from P_CnsldtnUnivHierarchy_2(P_HierarchyType : 'CS05', P_MasterDataType : 'RFAREA' ) as _Hierarchy
association [0..*] to I_CnsldtnFuncnlAreaHierarchyT as _Text on $projection.CnsldtnFunctionalAreaHierarchy = _Text.CnsldtnFunctionalAreaHierarchy
{
@ObjectModel.text.association: '_Text'
key cast(_Hierarchy.CnsldtnUniversalHierarchy as fincs_functionalareahierarchy preserving type ) as CnsldtnFunctionalAreaHierarchy,
@Semantics.businessDate.to: true
key _Hierarchy.ValidityEndDate,
@Semantics.businessDate.from: true
_Hierarchy.ValidityStartDate,
@Semantics.user.lastChangedBy: true
_Hierarchy.LastChangedByUser,
@Semantics.systemDateTime.lastChangedAt: true
_Hierarchy.LastChangeDateTime,
_Text
};