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

When scrolling table control selected rows become deselect

Former Member
0 Likes
1,103

Hi,

In the table control in module pool program I have check few rows. After that when I click the scroll button the selected lines become deselected.

I have check line sel = multiple, column sel = single, and check w/selcolumn and already give name.

Please help me out.

Hi,

In the table control in module pool program I have check few rows. After that when I click the scroll button the selected lines become deselected.

I have check line sel = multiple, column sel = single, and check w/selcolumn and already give name.

Please help me out.

4 REPLIES 4
Read only

venuarun
Active Participant
0 Likes
922

Hi Sunandan,

Please do the following code in your PAI of your screen.

In your PAI 

Loop

Modify IT_TAble from WA_workarea Index Table control lines.

endloop.

With Regards

Arun VS

Read only

Former Member
0 Likes
922

Hi Arun,

I have already maintained that one but it still not working.

Read only

venuarun
Active Participant
0 Likes
922

Hi Sunandan,

Can you please debug and check in your modify statement that the work area  has got Sel = 'X'.

With Reagrds

Arun VS

Read only

Former Member
0 Likes
922

You have to do something like this in PAI LOOP:

FIELD wa_flow_logic-row_selector_field MODULE update_mark ON request.

....


MODULE update_mark.

MODIFY itab FROM wa_flow_logic INDEX table_control-current_lines TRANSPORTING row_selector_field.

ENDMODULE.