Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

dynp_too_many_radiobuttons_on error ??

Former Member
0 Kudos

hi friends.I wrote this code.

SUBMIT (report) VIA SELECTION-SCREEN

WITH S_SAKONT = gt_ot-kunnr

WITH BUKRS = gt_ot-bukrs

WITH HK3 EQ 'X' "radiobutton

AND RETURN .

where do ı do error?

please help me

thanks.

Edited by: Emrah Gdal on Sep 24, 2008 6:43 PM

2 REPLIES 2

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

You need to make sure that you are setting the other radiobuttons = space as well. So for example, lets say that you have 3 radiobuttons HK1, HK2, and HK3, and you want o set HK3 as on, then the other two must be set to off.

SUBMIT (report) VIA SELECTION-SCREEN
WITH S_SAKONT = gt_ot-kunnr
WITH BUKRS = gt_ot-bukrs
WITH HK1 EQ ' '
WITH HK2 EQ ' '
WITH HK3 EQ 'X' "radiobutton
AND RETURN .

Regards,

Rich Heilman

Former Member
0 Kudos

Hi,

You might have assigned the same group name to any other set of radio buttons you are using.

Cheers!!