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

Table control issue

aakash_chalasani
Explorer
0 Likes
540

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

4 REPLIES 4
Read only

Former Member
0 Likes
514

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.

Read only

Former Member
0 Likes
514

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

Read only

Former Member
0 Likes
514

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

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
514

Is this what you are looking for