three radiobutton on the same line
hi to all ,
my requirement is that i have to provide 3 radiobuttons on single line
format should be comment then radiobutton
please help me out
Tags:
Former Member replied
Hi,
try like this sample code...
SELECTION-SCREEN BEGIN OF LINE. selection-SCREEN COMMENT (10) text1. PARAMETERS rb1 RADIOBUTTON GROUP rad. selection-SCREEN COMMENT 15(10) text2. PARAMETERS rb2 RADIOBUTTON GROUP rad. selection-SCREEN COMMENT 30(10) text3. PARAMETERS rb3 RADIOBUTTON GROUP rad. SELECTION-SCREEN end OF LINE. INITIALIZATION. move: 'button 1' to text1, 'button 2' to text2, 'button 3' to text3.
Cheers,
jose.