Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Parameter for Multiple Selection

Former Member
0 Likes
4,710

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

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
2,315

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

5 REPLIES 5
Read only

naimesh_patel
Active Contributor
2,316

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

Read only

0 Likes
2,315

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.

Read only

0 Likes
2,315

hi Mike,

What exactly you want to do? How can you create table without fields?

Please be Specific about the problem.

Reagrds

Sumit Agarwal

Read only

Former Member
0 Likes
2,315

Hi,

Go with select-options for your requirement.. Using parameters you can pass only single value as input

regards

padma

Read only

Former Member
0 Likes
2,315

use select-options