Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Non Filterable entity in CDS

0 Likes
941

Hi,

Does anyone know how to make an entity not filterable in CDS?

Thanks

Hi,

Does anyone know how to make an entity not filterable in CDS?

Thanks

2 REPLIES 2
Read only

Andre_Fischer
Product and Topic Expert
Product and Topic Expert
0 Likes
837

Can you please add some more details about your scenario?

Release, Programming Model (RDS, BOPF, RAP, ...)

ceterum censeo RAP esse utendam
Read only

0 Likes
837

This is my entity:

entity Book { key id: UUID; name: String(100); author: String(200); numberPages: Integer; price: Decimal(6,2);}

This is my service:

entity Book as select from db.Book;
There is any kind of annotation like @readonly that disable all oData default filters? There is another way to do it different of any function?

Thanks