Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

scrolling in table control

Former Member
0 Likes
649

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?

3 REPLIES 3
Read only

Former Member
0 Likes
442

Hi,

Please refer the following thread :

2. For deletion, Under DELETE code, mention DELETE ITAB index sy-index.

Best regards,

Prashant

Read only

Former Member
0 Likes
442

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..

Read only

Former Member
0 Likes
442

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