‎2008 May 21 7:34 PM
Hi,
I need to put the text of the Radio Button before the radio button .
Can someone tell me how to do that?
Thanks,
Kangana.
‎2008 May 21 7:35 PM
‎2008 May 21 7:35 PM
‎2008 May 21 7:35 PM
‎2008 May 21 7:38 PM
Something like this.
selection-screen BEGIN OF LINE.
selection-screen COMMENT 1(20) text_001.
parameters: p_rad1 RADIOBUTTON GROUP grp1 default 'X'.
selection-screen end of line.
selection-screen BEGIN OF LINE.
selection-screen COMMENT 1(20) text_002.
parameters: p_rad2 RADIOBUTTON GROUP grp1.
selection-screen end of line.
INITIALIZATION.
text_001 = 'Rad Button 1'.
text_002 = 'Rad Button 2'.Regards,
Rich Heilman