‎2009 May 04 10:37 AM
Hi,
Can any one specify how to activate vertical scroll bar in tab control in se80 transaction?
horizontal scroll bar is working but verticalscroll bar is not coming.
Thanks,
Priya.
‎2009 May 04 11:37 AM
Dear Siva,
Please add the code as below in the PBO of the screen where there is TABLE CONTROLE SCREEN.
DATA:$lines type i.
tbl1-v_scroll = 'X'.
DESCRIBE TABLE it_zmmt_mdata LINES $lines.
tbl1-lines = $lines + 100.
This will enable the vertical scroll on your Tablecontrole screen.
Regards,
Murthy.
‎2009 May 04 11:54 AM
Thankss Murthy..
But if i use this code in PBO,
TC1-V_SCROLL is not defined - error is thrown.
TC1 is the table control name of that screen.
Regards,
Priya.
‎2009 May 25 5:08 AM