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 Scroll Bar In table controle

Former Member
0 Likes
544

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
Read only

gopi_narendra
Active Contributor
0 Likes
508

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

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.

3 REPLIES 3
Read only

Former Member
0 Likes
508

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

Read only

gopi_narendra
Active Contributor
0 Likes
509

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

Read only

hymavathi_oruganti
Active Contributor
0 Likes
508

CONTROLS contrl TYPE TABLEVIEW USING SCREEN dynnr.

contrl-v_scroll = 'X'.

contrl being the table control name.