I am using a 'List View Categories' Service to get values from a Domino Database view. The output from this is used to populate a drop down list. However, only 50 entries are returned, although there are more in the view that is being searched. I have this same symptom in more than one drop down fields. What is causing this restriction?
Did you increase page size as described here https://support.hcltechsw.com/community?id=community_question&sys_id=e98344e21b20ca10ddcd75d4cc4bcb9c ?
Do you agree with my summary regarding the search service:
- matching results are split into Pages
- each Page holds a default of 50 records or the value defined in PageSize (maximum 1000)
Example:
Assuming a PageSize of 50 and a repository of 125 potentially matching records, it would require 3 Pages i.e., the service will need to execute three times with the Page input assignment incrementing by 1:
Page1 = 50 records (#1 - #50)
Page2 = 50 records (#51 - #100)
Page3 = 25 records (#101 - #125)
No output assignment variable returns the gross number of matching records hence how do we know when to stop executing the service?
Is one solution to evaluate the output assignment 'Number of records' against the input assignment PageSize (50) i.e., when Number of records < 50 no further service iteration is necessary?
Have I got that right?
Best regards