‎2008 Jul 17 8:48 AM
hi all,
i have created a screen in which there are two radio buttons with same group and two parameters.
when i am checking the radiobutton value in pai of that screen in debug mode it is not detectiong the radio buttons but detecting the parameters.
can anyone please tell me the reason for the same.
regards
vijay
‎2008 Jul 17 9:11 AM
Hi,
Refer the below link for info on Radio Buttons in Dialog Programming:
http://help.sap.com/saphelp_nw04/helpdata/EN/9f/db9cdc35c111d1829f0000e829fbfe/frameset.htm
Best Regards,
Sunil.
‎2008 Jul 17 9:18 AM
Hi,
Try this In PAI
case sy-ucomm.
when 'FCODE'
if rad1 = 'X'.
.
.
.
endif.
if rad2 = 'X'.
.
.
.
endif.
‎2008 Jul 17 9:21 AM
hi..
you can use...
SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE t03.
PARAMETERS: alv_list RADIOBUTTON GROUP g1,
alv_grid RADIOBUTTON GROUP g1,
c_rep RADIOBUTTON GROUP g1.
SELECTION-SCREEN END OF BLOCK b3.
and then check
IF c_rep = 'X'
to check whether radiobutton was selected or not..
If it helps please reward.
thanks.
‎2008 Jul 17 10:02 AM
Hi,
Check this link-
http://help.sap.com/saphelp_nw04/helpdata/en/e6/83a0375b5dd003e10000009b38f8cf/content.htm
Regards,
Sujit
‎2008 Jul 17 10:36 AM