cancel
Showing results for 
Search instead for 
Did you mean: 

How to Enable to vertical scroll bar in a table control

Former Member
0 Kudos

Hi,

I have created a table control with a wizard and later did some modifications on it. Problem I have now is that the vertical scroll bar is disabled on this table control. The end user wants to enter as many rows as possible, however as the scroll bar is disabled, he is not able to add the rows at the end (of the visible table control area).

How do I enable the vertical scroll bar of the table control?

Please help.

Thanks,

Vishal.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI,

Try this,

In PBO

MODULE status_0102.

<Table Control Name> - lines = 1000.

ENDMODULE.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hello Vishal,

In PBO.

Create a Module and in the module increment the value of tbcl-lines.

ex:

Data : L type i.

IN PBO.

MODULE vertical_scroll_bar.

-


MODULE vertical_scroll_bar.

DESCRIBE TABLE itab lines L.

<table control name>-lines = L + 10.

ENDMODULE.

-


Hope this solves your issue.

Cheers,

Suvendu

Former Member
0 Kudos

Hi,

Use stament Describe you can enable Vertical Scroll Bar.

Describe table IT lines TABC-lines. Where TABC is table control name on screen.

Write Above statement at right place on your program at where you display data on screen.