‎2006 Nov 20 4:46 PM
I have a table control which was displaying perfectly. I decided to add a tab control to my screen.
When I created a new screen for my table control and called it from the the main screen onto the tab, it is displayed with a list of item from the PBO event. These values would have been assigned in a prevoius session.
Is there a way of clearing these values and start with a black table.
Points will be rewarded
‎2006 Nov 20 4:49 PM
Hi,
Clear the internal table when you call it from the main screen..
REFRESH ITAB_TC. " Refresh the internal table for TC before displayin..
CALL SCREEN '0200' . "New screen for table control.
Thanks,
Naren
‎2006 Nov 20 4:49 PM
Hi,
Clear the internal table when you call it from the main screen..
REFRESH ITAB_TC. " Refresh the internal table for TC before displayin..
CALL SCREEN '0200' . "New screen for table control.
Thanks,
Naren
‎2006 Nov 20 4:54 PM
Hi
But have you two tables control?
I can't understand this, anyway you should refresh the internal table where the data to be listed in TC are stored.
Max
‎2006 Dec 14 3:33 PM
Clear <internal table>
Refresh <IT>
Before calling the table control screen.
If you need Use it below code.
This for refresh the table control syntax
REFRESH CONTROL 'TBCL' FROM SCREEN '0100'.