‎2006 Dec 27 11:52 AM
Hi
How to declare a single radio button in selection screen. for me it is not allowing to declare single, it allows only if i declare multiple parameters as radio button.
Regards
Ratna
‎2006 Dec 27 11:55 AM
Radio button by default will be created for a group .
min number is 2 for a group.
You cannot declare a single radio button.
Instead u can go for a check box declaration.
regards,
vijay
‎2006 Dec 27 11:56 AM
Hi,
It is not possible to declare only one radio button , may be u can hide one of them like this
REPORT ychatest LINE-SIZE 350.
PARAMETERS : r1 RADIOBUTTON GROUP rad DEFAULT 'X',
r2 RADIOBUTTON GROUP rad.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'R2'.
screen-invisible = 1.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
‎2006 Dec 27 11:56 AM
‎2006 Dec 27 11:57 AM
It is not possible to declare a single radio button.(as it always belongs to a group)
Use check box for this purpose
‎2006 Dec 27 11:59 AM
Hi,
I think you cant have single radio button in selection screen, You must have at least two radio buttons in a group.
Regards
Ashutosh
Reward points if helpful
‎2006 Dec 27 1:17 PM
Radio Buttons are designed to select one among many( at least two). So, we cant create one radio button.
Check box can replace ur need.
Cheers.