‎2007 Jul 27 12:16 PM
‎2007 Jul 27 12:19 PM
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
‎2007 Jul 27 12:19 PM
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
‎2007 Jul 27 12:23 PM
Hi,
I think its not possible to create 2 select-options in same line.
Regards,
Azhar
‎2007 Jul 27 12:36 PM
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
‎2007 Jul 27 2:36 PM
‎2007 Jul 27 2:41 PM
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.
‎2007 Jul 27 5:00 PM
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