Hi all,
I am using tablecontrol to display data. If i display 10 records, the user scrolls the table he can view the data... everything works fine. but the problem is when he selects the first row and scrolls down, the 'field' statement in my flowlogic reads the first row and again when the user scrolls up (assume we are in the 4th row ) the 'field' statement reads the 4th row and not the first row and also my fisrt selected row becomes deselected. i dont want that to happen. How to make the 'field' statement to read the first row ?
my code :
loop at itm.
field it_itm-pick.
field it_itm-matnr.
module chage table.
endloop.
my requirement is to take the selected row and do calculation ?
thanks,
SIva