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

Table control - vertical scroll bar - se80

Former Member
0 Likes
659

Hi,

Can any one specify how to activate vertical scroll bar in tab control in se80 transaction?

horizontal scroll bar is working but verticalscroll bar is not coming.

Thanks,

Priya.

3 REPLIES 3
Read only

Former Member
0 Likes
550

Dear Siva,

Please add the code as below in the PBO of the screen where there is TABLE CONTROLE SCREEN.

DATA:$lines type i.

tbl1-v_scroll = 'X'.

DESCRIBE TABLE it_zmmt_mdata LINES $lines.

tbl1-lines = $lines + 100.

This will enable the vertical scroll on your Tablecontrole screen.

Regards,

Murthy.

Read only

0 Likes
550

Thankss Murthy..

But if i use this code in PBO,

TC1-V_SCROLL is not defined - error is thrown.

TC1 is the table control name of that screen.

Regards,

Priya.

Read only

Former Member
0 Likes
550

Thankksss