From 6fa2aaee34e862337c5bc5a413817355ab283437 Mon Sep 17 00:00:00 2001 From: Johannes Vogel <31311694+johannes-vogel@users.noreply.github.com> Date: Thu, 15 May 2025 15:43:21 +0200 Subject: [PATCH] fiori: rm unused hierarchy elements (#838) --- fiori/app/common.cds | 8 -------- 1 file changed, 8 deletions(-) diff --git a/fiori/app/common.cds b/fiori/app/common.cds index e4ebc121..7561f118 100644 --- a/fiori/app/common.cds +++ b/fiori/app/common.cds @@ -79,8 +79,6 @@ aspect Hierarchy { LimitedDescendantCount : Integer64 = null; DistanceFromRoot : Integer64 = null; DrillState : String = null; - Matched : Boolean = null; - MatchedDescendantCount : Integer64 = null; LimitedRank : Integer64 = null; } @@ -88,8 +86,6 @@ annotate Hierarchy with @Capabilities.FilterRestrictions.NonFilterableProperties 'LimitedDescendantCount', 'DistanceFromRoot', 'DrillState', - 'Matched', - 'MatchedDescendantCount', 'LimitedRank' ]; @@ -97,8 +93,6 @@ annotate Hierarchy with @Capabilities.SortRestrictions.NonSortableProperties: [ 'LimitedDescendantCount', 'DistanceFromRoot', 'DrillState', - 'Matched', - 'MatchedDescendantCount', 'LimitedRank' ]; @@ -121,8 +115,6 @@ annotate my.Genres with @Hierarchy.RecursiveHierarchy #GenreHierarchy: { LimitedDescendantCount: LimitedDescendantCount, DistanceFromRoot : DistanceFromRoot, DrillState : DrillState, - Matched : Matched, - MatchedDescendantCount: MatchedDescendantCount, LimitedRank : LimitedRank };