‎2006 Sep 18 9:06 AM
Hi all,
I use table control for displaying records. but when I scroll the table control contents vertically the records above get vanished. will any event trigger when we use the vertical scroll. Is there any way to handle it? then when I delete a record from the table control, that particular record is getting deleted but that row is not getting grayed out? how to do it?
‎2006 Sep 18 9:13 AM
‎2006 Sep 18 9:18 AM
Hi,
By scrolling table control vertically, it will not touch your data. Please debug your code after the scroll button click to catch which point/reason that causing the blank off of your table control.
"then when I delete a record from the table control, that particular record is getting deleted but that row is not getting grayed out? how to do it?"
if the deleted entry no longer appear in table control then in what sense you want to grey out the disappeared rec? Pls state your problem clearly..
‎2006 Sep 18 10:22 AM
Hi,
1) for scrolling enable check box in table control
attributes for
vertical ,horizontal
separators
2)for greying out in internal table
use flag for identifying deletion record.
loop at itab where flag = 'X '.
loop at screen.
if screen-input = 0.
modify screen.
endif.
endloop.
endloop.
Regards,
Amole