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: 

Vertical Scroll Bar In table controle

Former Member
0 Kudos

Whiel Inserting an table controle in the module pool program . I am not able to

Get the vertical scroll bar . Can any one help me.

Good Points will be rewarded.

1 ACCEPTED SOLUTION

gopi_narendra
Active Contributor
0 Kudos

Hi Subash Welcome to SDN

in the PBO of the screen module include these lines

<tabctrlname> is the name of the table control placed on the screen.

it_tabctrl is the internal table data that is being passed to the table control.

describe table it_tabctrl lines N.

<tabctrlname>-lines = N.

Regards

Gopi

3 REPLIES 3

Former Member
0 Kudos

Hi Subhash,

Check out this link

<a href="http://sap.ittoolbox.com/documents/popular-q-and-a/vertical-scroll-bar-in-table-2212">Possible Solution</a>

Regards,

Chester

gopi_narendra
Active Contributor
0 Kudos

Hi Subash Welcome to SDN

in the PBO of the screen module include these lines

<tabctrlname> is the name of the table control placed on the screen.

it_tabctrl is the internal table data that is being passed to the table control.

describe table it_tabctrl lines N.

<tabctrlname>-lines = N.

Regards

Gopi

hymavathi_oruganti
Active Contributor
0 Kudos

CONTROLS contrl TYPE TABLEVIEW USING SCREEN dynnr.

contrl-v_scroll = 'X'.

contrl being the table control name.