Application Development 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: 

Verticle scroll bar in table control

Former Member
0 Kudos

Hi,

How to handle verticle scrol bar in module pool ?

My table control has 7 rows is visible without scrolling , When i am selecting 3 rows & on scrolling , my 3 selected fields r getting deselected......... I want that user can see all the selected rows after scrolling.

Please sugust something>...........

Thanks

2 REPLIES 2

krishnendu_laha
Active Contributor
0 Kudos

Hi Ankita,

Assign number of lines of internal table to table control:

DESCRIBE TABLE INT_ZVCAT LINES WS_FILL.

TABLE_CONTROL-LINES = WS_FILL.

After that, check if you are doing anything with function code of scrolling.

Hope it will solve the problem.

Regards

Krishnendu

Former Member
0 Kudos

Hi,

I think it will automatically display the scroll bar whn it exce4eds the particular columns..

Only thing we want to do is,we write the code to make how many lines using the describe stmt as given above in the first answer

REWARD IF USEFUL