2014 Jan 28 6:06 AM
Hi,
I have 2 radio button in a group on selection screen. I have set radio button as default selected.
I am calling a Screen 100 on selection of second radio button.
When I press back button on Screen 100 and Call screen 0 , it shows the second radio button selected whereas I the selection screen to show the first default button selected.
Pls help
Thanks,
Shriniwas
2014 Jan 28 6:13 AM
In initialization event of report have you set the default value of radio button as X?
2014 Jan 28 6:17 AM
Hi Shriniwas,
Make it First RB selected by passing value X in PBO of Screen 0 (first screen).
In PBO of first screen (0).
Loop at Screen.
If Screen-Name = RB1.
RB1 = 'X'.
RB2 = SPACE.
Modify Screen.
Endif.
Endloop.
Regards,
Vijay
2014 Jan 28 7:02 AM
Thanks Vijay. It worked. No need to use loop at screen as it was a selection screen and
only setting value 'X' to the desired RB is sufficient.
Nabheet I tried INITIALIZATION but the control din't go to there when I called screen 0.
Thanks to both of you.
Shriniwas