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 Authors as projection on my.Authors;
@readonly
@cds.search: {name}
entity GenreHierarchy as projection on my.Genres
}

View File

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