hana workaround, local messaging and rm virtual

This commit is contained in:
D070615
2025-03-26 10:05:12 +01:00
parent 35eada6a6c
commit 8860685080
2 changed files with 7 additions and 6 deletions

View File

@@ -7,5 +7,6 @@ service AdminService @(requires:'admin', path:'/admin') {
entity Books as projection on my.Books; entity Books as projection on my.Books;
entity Authors as projection on my.Authors; entity Authors as projection on my.Authors;
@readonly @readonly
@cds.search: {name}
entity GenreHierarchy as projection on my.Genres entity GenreHierarchy as projection on my.Genres
} }

View File

@@ -1,12 +1,12 @@
namespace my.common; namespace my.common;
aspect Hierarchy { aspect Hierarchy {
virtual LimitedDescendantCount : Integer64; LimitedDescendantCount : Integer64 = null;
virtual DistanceFromRoot : Integer64; DistanceFromRoot : Integer64 = null;
virtual DrillState : String; DrillState : String = null;
virtual Matched : Boolean; Matched : Boolean = null;
virtual MatchedDescendantCount : Integer64; MatchedDescendantCount : Integer64 = null;
virtual LimitedRank : Integer64; LimitedRank : Integer64 = null;
} }