hana workaround, local messaging and rm virtual
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user