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

select-option

Former Member
0 Likes
913

how to get select-options side by side in a same line.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
748

Hi

I think it is not possible to get the multiple select-options in a single line.

You can get 2 to 3 parameters in a single line using BEGIN OF LINE and END OF LINE on selection screen

<b>Reward points for useful Answers</b>

Regards

Anji

Message was edited by:

Anji Reddy Vangala

6 REPLIES 6
Read only

Former Member
0 Likes
749

Hi

I think it is not possible to get the multiple select-options in a single line.

You can get 2 to 3 parameters in a single line using BEGIN OF LINE and END OF LINE on selection screen

<b>Reward points for useful Answers</b>

Regards

Anji

Message was edited by:

Anji Reddy Vangala

Read only

Former Member
0 Likes
748

Hi,

I think its not possible to create 2 select-options in same line.

Regards,

Azhar

Read only

Former Member
0 Likes
748

Hi

Its not possible to get morethen 1 select-option in selection screen in same line.

Its possible in case of parameters.

Reward me if its helpful.

Ravi

Read only

Former Member
0 Likes
748

not possiable select-options side by side in a same line

Read only

Former Member
0 Likes
748

ye you can do that

REPORT ztest.

TABLES : mara , vbap.

SELECTION-SCREEN : BEGIN OF LINE.
SELECT-OPTIONS : s_matnr FOR mara-matnr,
                 s_vbeln FOR vbap-vbeln.
SELECTION-SCREEN : END OF LINE.

Read only

Former Member
0 Likes
748

Hi,

To position a set of parameters or comments in a single line on the selection screen, you must

declare the elements in a block enclosed by the following two statements:

SELECTION-SCREEN BEGIN OF LINE.

...

SELECTION-SCREEN END OF LINE.

Ex.

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(10) TEXT-001.

select-options: matnr for mara-matnr,

mbrsh for mara-mbrsh.

SELECTION-SCREEN END OF LINE.

Regards,

Bhaskar