cancel
Showing results for 
Search instead for 
Did you mean: 

SEGW / Value help / Request limited to top100

former_member184588
Active Participant
0 Kudos

Hi, we are developing a workflow based SAPUI5 app and would like to forward the user with an value help.

var input = new sap.m.Input('forward-to', {

            width: "100%",

            placeholder: "* Receiver",

            showSuggestion: true,

            suggestionItems: {

                path: "/EmployeeSet",

                template: new sap.ui.core.Item({

                    text: "{NAME}"

                })

            },

Our problem is the oData Model (generated by SEGW as valuehelp). The sent request for EmployeeSet is limited to top 100:
"/EmployeeSet?$skip=0&$top=100&$inlinecount=allpages" and we don't know how to handle this limit because we need more than these 100 entries.

Is this a bug, a feature? How could a workaround look like (except querying all users and bind them to another data model)?

Greetings,
   Vanessa


Accepted Solutions (1)

Accepted Solutions (1)

SandipAgarwalla
Active Contributor
0 Kudos

set the size limit on the data model to fetch more,   model.setSizeLimit()

former_member184588
Active Participant
0 Kudos

Works. Thank you.

Answers (0)