2008 Sep 25 2:22 PM
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.
2008 Sep 25 2:25 PM
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.