‎2008 Aug 27 4:07 PM
Hi Experts,
How I have to programming my Parameters, that I can select more than one value?
Parameter: user type .....
I want to select User "Test" and User "Mike".
Regards,
Mike
‎2008 Aug 27 4:11 PM
You should convert your Parameter to Select-option to be able to select more than one value.
Like:
TABLES: USR02.
SELECT-OPTIONS: S_USER FOR USR02-BNAME.
Make sure than you change your select query.
Like:
...
WHERE USER IN S_USER
...
Regards,
Naimesh Patel
‎2008 Aug 27 4:11 PM
You should convert your Parameter to Select-option to be able to select more than one value.
Like:
TABLES: USR02.
SELECT-OPTIONS: S_USER FOR USR02-BNAME.
Make sure than you change your select query.
Like:
...
WHERE USER IN S_USER
...
Regards,
Naimesh Patel
‎2008 Aug 28 9:47 AM
And how I can select this several parameters in my Function module?
I use a local table, but how I can make a select over my table? My table did not has fields.
‎2008 Aug 28 10:12 AM
hi Mike,
What exactly you want to do? How can you create table without fields?
Please be Specific about the problem.
Reagrds
Sumit Agarwal
‎2008 Aug 28 6:31 AM
Hi,
Go with select-options for your requirement.. Using parameters you can pass only single value as input
regards
padma
‎2008 Aug 28 7:49 AM