fiori: rm unused hierarchy elements (#838)

This commit is contained in:
Johannes Vogel
2025-05-15 15:43:21 +02:00
committed by GitHub
parent 987611b009
commit 6fa2aaee34

View File

@@ -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
};