‎2010 Jul 12 3:10 AM
Hello Experts,
I am working on table control, It is working when we selects one row at atime. But it is seleceting multiple rows when we scroll up or down.
for example:
if i ahve selected first row, if a select the another row in the smae page it will not allow. it is working fine here.
But when i scroll up and i will have new set of rows if i select any one of them it is selecting two rows. It should not happen.
I want it should work as, if user selects in next page it should deselect earlier selected row in the previous page.
Can you please help me on this regard........
regards
Akkash
‎2010 Jul 12 5:59 AM
Hi,
You must have given option w/SelColumn in the screen painter for table control.
Define an internal table for this table control with the additional column identifier like pick.
Now in PAI of the screen check the OK_CODE of the scroll up and in the PAI loop of this table controread the internal table of the table control with this identifier (pick = 'X' ) and modify this internal table for this selected row with (pick = ' ') .
Thanks.
‎2010 Jul 12 6:30 AM
Hi,
if u want single line to be selected at a time then goto table control properties and select the SINGLE LINE property in the LINE SEL, and check tat u have defined w/selcolumn with the internal table field IT-SEL
‎2010 Jul 12 6:30 AM
hi AAkash chalasani
well come to SDN.
as per ur requirement, set the w/set column field to null in PAI module after the calling of ur next screen.
regards
Abhilash
‎2010 Jul 12 10:24 AM