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

Scrollbar in Table Control and Line Selection

Former Member
0 Likes
770

Hi Gurus,

I have used table control which is having scroll bar in my module pool program. Scroll bar is working fine.

But if i am selecting few rows and then scrolling down to select few more lines the previous selection is lost.......why this is happening?

Thanks in advance.

Regards,

Aniket Dayama

Hi Gurus,

I have used table control which is having scroll bar in my module pool program. Scroll bar is working fine.

But if i am selecting few rows and then scrolling down to select few more lines the previous selection is lost.......why this is happening?

Thanks in advance.

Regards,

Aniket Dayama

4 REPLIES 4
Read only

Former Member
0 Likes
676

Hi,

Because even scroll is a user command u need to update the check box fields in your internal table

pai.

loop at itab.

module handle_usercommand.

endloop.

module handle_usecommand.

modify itab from wa transporting 'SEL'.

endmodule

where sel is the selection field

santhosh

Read only

0 Likes
676

I have not included SEL field into my internal table.......is that required to solve this problem?

Read only

0 Likes
676

Ofcourse you have to include a single character field in the internal table which will used 2 select your line.

Read only

Former Member
0 Likes
676

hi,

u have to update the check box as well as in the flow logic u have run a loop before process before output. n before process after input n dont forget to activate every screen u have created if means u wont get the output.