How do you display all records from Aggregate?
So I want all records to show in a certain container, like if I type 1 in an input then all records like
for example <111,222,333> I want them all to be shown in a certain container.
What is the best way to do it?
Hi,
You need to visit training material first.
https://www.outsystems.com/training/courses/
Hi @SeungHwan Kim ,
You can try with advance sql using this query.
https://database.guide/how-to-get-multiple-rows-into-a-comma-separated-list-in-sql/
Hope this will help you.
On your aggregate there is a property called Max Records. you can set it up to any number of records you want to fetch
Hi SeungHwan Kim,
I dont understand your question properly, please share your OML I can look into it for you.
Thanks !
Hi SeungHwan,
You can put a filter in your aggregate and maintain 2 parameters one for minimum and maximum number and put a condition like
Number >= minimum and Number =< maximum,
and use reusable block to display these records separately in your screen, but don't forgot to update minimum and maximum parameters for every request.
I hope it'll help you.
Thanks
Deep