2008 Dec 01 7:13 AM
hi
can any body make me know how to put text on the right hand side of the radio button.
thanks in advance.
prasad
2008 Dec 01 7:15 AM
hi
can any body make me know how to put text on the right hand side of the radio button.
thanks in advance.
prasad
2008 Dec 01 7:15 AM
2008 Dec 01 7:18 AM
HI,
Check this Code ..
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(31) text-s04.
PARAMETERS: p_check TYPE pp0c-test DEFAULT 'X' RADIOBUTTON GROUP grp1.
SELECTION-SCREEN COMMENT 38(15) text-s05.
SELECTION-SCREEN COMMENT 1(31) text-s03.
PARAMETERS: p_check2 TYPE pp0c-test RADIOBUTTON GROUP grp1.
SELECTION-SCREEN COMMENT 38(15) text-s02.
SELECTION-SCREEN END OF LINE.
2008 Dec 01 7:18 AM
Hi Prasad,
Try the following code:
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECTION-SCREEN SKIP.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: r1 RADIOBUTTON GROUP g1 USER-COMMAND ucomm DEFAULT 'X'.
SELECTION-SCREEN COMMENT 3(17) text-002 FOR FIELD r1.
SELECTION-SCREEN POSITION 32.
PARAMETERS: r2 RADIOBUTTON GROUP g1 .
SELECTION-SCREEN COMMENT 34(17) text-003 FOR FIELD r2.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN SKIP.
SELECTION-SCREEN END OF BLOCK b1.
Hope this will help.
Regards,
Nitin.
2008 Dec 01 7:21 AM
Hi,
Please specify whether you are using screen painter or SELECTION SCREEN
if you are using screen painter you can enter the text in the corresponding text input field
regards
Ramchander Rao.K
2008 Dec 01 7:28 AM
Hi, Check this code snippet.
SELECTION-SCREEN BEGIN OF BLOCK b01.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS:
par01 RADIOBUTTON GROUP r01.
SELECTION-SCREEN COMMENT 10(30) text-p01.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS:
par02 RADIOBUTTON GROUP r01.
SELECTION-SCREEN COMMENT 10(30) text-p02.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK b01.
P.S. You need to create the text by double clicking on text-p01 and text-p02 and put the text you want to display on the right side of your radio button. Hope you understand. Let me know if there is any issue.
Thanks
NK
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |