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: 

scroll in table control.

0 Kudos

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

gopi_narendra
Active Contributor
0 Kudos

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

Former Member
0 Kudos

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

former_member196299
Active Contributor
0 Kudos

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

Former Member
0 Kudos

Hi Sajith

try thids one

describe table itab.

tab-line = sy-tfill

tab name of the table control

Regards

Ashok kumar

0 Kudos

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

Former Member
0 Kudos

see this sap example program: demo_dynpro_tabcont_loop

demo_dynpro_tabcont_loop_at