2008 Oct 06 6:59 AM
Hi,
I have created 3 radiobuttons. I need these 3 radiobuttons to be displayed in a single line of a report program.
Ex: RB1 RB2 RB3
Please help.
Thanks,
Pranil
2008 Oct 06 7:03 AM
try like this
SELECTION-SCREEN begin of line.
SELECTION-SCREEN COMMENT 1(15) text-rg1.
parameters: rb1 RADIOBUTTON GROUP rg1.
SELECTION-SCREEN COMMENT 25(15) text-rg2.
PARAMETERS: rb2 RADIOBUTTON GROUP rg1.
SELECTION-SCREEN COMMENT 50(15) text-rg2.
PARAMETERS: rb3 RADIOBUTTON GROUP rg1.
SELECTION-SCREEN end of LINE.Regards
Hi,
I have created 3 radiobuttons. I need these 3 radiobuttons to be displayed in a single line of a report program.
Ex: RB1 RB2 RB3
Please help.
Thanks,
Pranil
2008 Oct 06 7:00 AM
Hi,
Before displaying the radio buttons use the statement
Selection-screen begin of line.
Then write your radiobutton statements and then write :
Selection-screen end of line.
Regards,
Pramod
Edited by: Pramod Manjunath on Oct 6, 2008 11:32 AM
2008 Oct 06 7:02 AM
Hi Pranil AP,
In SELECTION-SCREEN definition,
use BEGIN OF LINE...END OF LINE.
Within this, add RADIOBUTTONS and COMMENTS for them.
This ia the way to create buttons in a row.
Regards,
R.Nagarajan.
-
We can -
2008 Oct 06 7:03 AM
try like this
SELECTION-SCREEN begin of line.
SELECTION-SCREEN COMMENT 1(15) text-rg1.
parameters: rb1 RADIOBUTTON GROUP rg1.
SELECTION-SCREEN COMMENT 25(15) text-rg2.
PARAMETERS: rb2 RADIOBUTTON GROUP rg1.
SELECTION-SCREEN COMMENT 50(15) text-rg2.
PARAMETERS: rb3 RADIOBUTTON GROUP rg1.
SELECTION-SCREEN end of LINE.Regards
2008 Oct 06 7:09 AM
Hi,
plz try this way:
SELECTION-SCREEN:BEGIN OF BLOCK b1 WITH FRAME TITLE text-010.
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: RB1 RADIOBUTTON group grp1 DEFAULT 'X'.
PARAMETERS: RB2 RADIOBUTTON GROUP grp1.
PARAMETERS: RB3 RADIOBUTTON GROUP grp1.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b1.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |