‎2009 Apr 17 7:45 AM
Hi Friends ,
I am Using a Table Control in a screen painter and passing one of the internal table from my program to that table control. I have also placed 2 radio buttons on the table control and grouped them rowwise.
The Problem that i am facing is when i select other radio button and hit the Enter key or scroll the scroll bar down that selected radio button is reset and again the first radion button got selected which was selected initially as a default.
Please help.
Regards,
Nikhil
‎2009 Apr 17 7:49 AM
Try this:
You can clear the 1st radio button when choose the 2nd one .
‎2009 Apr 17 7:54 AM
Please check the screen flow. I think screen gets relode or refresh.
You have to check the call of the screen.
‎2009 Apr 17 7:54 AM
Hi,
I guess you haven't taken a field corresponding to the radiobutton in the internal table.
So take the field as rb TYPE c and then display this field in table control as a radiobutton with name itab-rb (if using internal table with header line) or wa-rb (if using work area).
In the PAI, use code to modify the contents of internal table from table control at all user action, so if next time PBO is executed, the data is displayed appropiately from the internal table into table control.
Hope this helps you.
Regards,
Tarun