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

scroll in table control.

0 Likes
706

hi guys,

my table control doesnt display scrolling......i even used tablecontrol-v_scroll = 'X'..

..still it doesnt display scroll bar.....wht shld i do.....

tanx in advance.

6 REPLIES 6
Read only

gopi_narendra
Active Contributor
0 Likes
631

in the PBO 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.

<b>describe table it_tabctrl lines N.

<tabctrlname>-lines = N.</b>

Regards

Gopi

Read only

Former Member
0 Likes
631

Hi,

your control for that table control is TBC1.

in the PBO event of that screen, TBC1-LINES = 50.

Then the scroll will come

Regards

Sudheer

Read only

former_member196299
Active Contributor
0 Likes
631

hi Sajith ,

Increase the length of your table control in your program coding, it should display the scroll then .

Try setting TC-lines = 100. it should give you the vertical scroll .

Regards,

Ranjita

Message was edited by:

Ranjita Kar

Read only

Former Member
0 Likes
631

Hi Sajith

try thids one

describe table itab.

tab-line = sy-tfill

tab name of the table control

Regards

Ashok kumar

Read only

0 Likes
631

Yes

the gist of the story is that the lines attribute of your table control should be set by all means if you want to enable the scroll bar.

Check this out for more info

http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbac4435c111d1829f0000e829fbfe/frameset.htm

Read only

Former Member
0 Likes
631

see this sap example program: demo_dynpro_tabcont_loop

demo_dynpro_tabcont_loop_at