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

Vertical scrolling in table control

Former Member
0 Likes
646

Hi Friends,

How to enable the vertical scroll bar in the table control. I my form, this is not working, but horizontal scroll bar is working.

Kindly guide me to get the vertical scroll bar working.

TIA.

Regards,

Mark K

4 REPLIES 4
Read only

Former Member
0 Likes
597

Hi

Check, whether you ticked that attribute in the Table control Attributes on the screen.

If the data in the table control exceds more than a page the vertical scroll bar comes

so put more records like 30 and see

it will work

since you are having just few records which are sufficient to display in one page it is not appearing.

reward points if useful

regards

Anji

Read only

0 Likes
597

Hi,

In the attribute, which option, I have to select.

Regards,

Read only

Former Member
0 Likes
597

In screen painter, when you go to the attibutes of table table,

there will be property called <b>resizing</b> under which tick verical checkbox.

If you table contril will hold more than record of heigh, the vscroll bar will be automatically activated.

Read only

Former Member
0 Likes
597

Hi,

Let us say table control name is TC1. You have to assign a value to TC1-lines in PBO event in a module.

try this. Determine the number of records in your internal table.

describe table itab lines gv_lines.

TC1-lines = gv_lines.

thanks,

sksingh