Hi,
I have a listbox which allows to select multiple data.
I have able to get the id for all selectitem, like '1000001,1000002,1000003' as string and to be passed as parameter into datawindow.
In the data source, I have the retrieval argument: ls_list and datasource as below to receive the data.
....
WHERE (stockclass.stockclassid in (:ls_list))
The problem, if I am only select one item from the listbox, it will allow to generate the report, but if I select more than 1 item, it will hits error below.
I did try to directly replace the ids into the datasource, not getting data from retrieval arguement, as below, it will allow success and no error given.
....
WHERE (stockclass.stockclassid in (1000001,1000002,1000003))
Please advise on how to resolve the problem.
Thank you in advance.
BR,
Yow