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: 

radio button is selected a popup screen with checkboxes

Former Member
0 Kudos

hi experts,

i have two radio buttons in the output if first is selected a pop up screen should come with yes or no options

and when second is checked a popup screen should be displayed with check boxes and after checking the required check boxes it should link to one more screen with check boxes and the data.

1 REPLY 1

former_member203501
Active Contributor
0 Kudos

hi check this example...

REPORT ZDYNAMIC_PROGRAM.

PARAMETERS: rb1 RADIOBUTTON GROUP ab MODIF ID bl2,

rb2 RADIOBUTTON GROUP ab MODIF ID bl2.

SELECTION-SCREEN BEGIN OF SCREEN 100.

parameter p_val1 type char10.

SELECTION-SCREEN END OF SCREEN 100.

SELECTION-SCREEN BEGIN OF SCREEN 200.

parameter p_val2 type char10.

SELECTION-SCREEN END OF SCREEN 200.

AT SELECTION-SCREEN.

if rb1 = 'X'.

call selection-screen 100.

else.

call selection-screen 200.

endif.