I need to add the refreshed IDO on a form to a Combo Box List Source. ver.9.0 Thanks in advance.
No code required. Use the List Source property under Data Source in the Properties pane.
[View:https://imgur.com/BurEyYQ:463:50]
[View:https://imgur.com/15k2P33:608:50]
Thanks. That works, however the collection filter changes using code and I would like the Combo Box to be in sync with collection refresh.
Is there a way to dynamically (in code) set the filter for the Combo Box
Since every IDO related gets caches while the form is open, updates to the collection will not be seen after you initially click the dropdown until you reopen the form. A solution to keep it in sync is to utilize an IDO method using a stored procedure as a CLM. You will see this occasionally in stock infor code, so finding an example shouldn't be difficult.
Using a variable.
For example filter = V(something)
Then change the value of the variable 'something' by another way when it needs to.
Thanks.