‎2008 Oct 03 2:59 AM
Hi experts,
I am currently facing trouble with table control Vertical scrolling. But table control working fine for horizontal scroll bar. i have tried all the attributes. But i am not succeeded. Please suggest me and provide valid inputs. surely awarded for the right answer.
Regards,
Sreenivasa sarma
‎2008 Oct 03 6:28 AM
Hi ,
If you want vertical scroll bars to work you need to do two things,
The vertical scroll bar will be displayed only when it has value values in it.
In order to display the vertical scroll bars
DATA: fill TYPE i.
In PBO of module pool
1. DESCRIBE TABLE itab LINES fill.
where itab is the internal table holding your table control data and variable fill is type i.
2. table_control-lines = fill .
where table_control is your table control name and fill is variable filled in previos step
thanks
‎2008 Oct 03 6:28 AM
Hi ,
If you want vertical scroll bars to work you need to do two things,
The vertical scroll bar will be displayed only when it has value values in it.
In order to display the vertical scroll bars
DATA: fill TYPE i.
In PBO of module pool
1. DESCRIBE TABLE itab LINES fill.
where itab is the internal table holding your table control data and variable fill is type i.
2. table_control-lines = fill .
where table_control is your table control name and fill is variable filled in previos step
thanks
‎2008 Oct 03 7:40 AM
After 4.6 B version you will have to provide number of lines for scrolling in PBO for Table Control
Write this code in PBO
DATA : AINDEX LIKE SY-TABIX.
describe Itab lines aindex.
TC-lines = aindex.
Regards,
Alpesh
‎2008 Oct 03 7:40 AM
After 4.6 B version you will have to provide number of lines for scrolling in PBO for Table Control
Write this code in PBO
DATA : AINDEX LIKE SY-TABIX.
describe Itab lines aindex.
TC-lines = aindex.
Regards,
Alpesh
‎2008 Oct 07 11:59 AM
thanks for all your replies and the problem has been resolved by my own
‎2009 Jan 01 9:36 AM
‎2014 Jul 15 9:36 AM