‎2009 Feb 12 7:27 PM
Hi Experts,
In Module pool layout I designed with the check box and the text boxes adn labels.
In this module pool I am using the step loops.
I am not designed any scroll bar in the layout but its coming in the output.
The probelm is after diplaying the output intially scorll bar is coming
but if we go to the another screen and come back that scroll bar is hiding.
if we hit the enter or if we press the page down button it's showing the scroll bar.
Please suggest me I want the scrall bar always.
Thnx
Sam
‎2009 Feb 23 4:32 AM
Hi
Check out these links.
http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbacac35c111d1829f0000e829fbfe/frameset.htm
http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac4435c111d1829f0000e829fbfe/content.htm
Hope this helps
Regards,
Jayanthi.K
‎2009 Feb 23 5:37 AM
Use following code in PBO of the screen.
DESCRIBE TABLE <<internal table which holds the values>> LINES <<table control>>-lines.
Regards,
Siva.
‎2009 Feb 23 6:48 AM
Hi,
In the PBO of the screen on which you are displaying the data in the table control, use code:-
data : line_count type i.
describe table <itab>
lines line_count.
"no of records in internal table
tab_ctrl-lines = line_count + 10.
"dynamically increase the size of the table control
"itab is internal table
"tab_ctrl is the name of table control in screen layout
Hope this solves your problem.
Thanks & Regards,
Tarun Gambhir