3
Views
2
Comments
Searching for "returned rows limit"
Question
When trying to see what's inside a list (an exceltorecordlist, if it mathers), while on debug mode, with a debug watch added, i got a "cannot display results" error message, with the info that the returned rows limit was exceeded...

Where can i change this limit??
2020-03-05 15-52-45
André Vieira
Staff
Hello Diogo,

In Service Studio you can only configure the returned row count for the query test operation. This is done in the options page (Edit > Options).

What seems to have happened to you looks like a bug. If you can reproduce it please submit it using the submit feedback option in Service Studio (Help > Submit Feedback). Don't forget to attach your OML.
Cheers,
André
2014-06-07 10-07-19
António Melo
Hi Diogo

Until the problem is solved, one workaround may be to have two foreach elements, over that recordlist, in a sequence.

For example, if you have the pattern:
ExcelToRecordlist1
...

foreach1 - ExcelToRecordlist1
[cycle logic]
...


just change to this pattern:
ExcelToRecordlist1

foreachDummy - ExcelToRecordlist1
[cycle logic] (dummy empty assign node) ...
foreach1 - ExcelToRecordlist1
[cycle logic]
...


after you debug this logic, just revert to the original one (remove the dummy part), to avoid unneeded performance penalties.
Regards,
António Melo
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.