‎2007 Mar 05 6:30 AM
Hi SDN,
In my screen layout,i have a table control which has 10 lines.But when i am executing the program,it is showing only 3 lines as output.Is it possible to show all the 10 lines in my output screen?
‎2007 Mar 05 6:33 AM
Hi,
Yes it is possible to show all 10 lines.
Check the attributes of the Table control and screen resolution.
Regards,
Anji
‎2007 Mar 05 6:33 AM
Hi,
Yes it is possible to show all 10 lines.
Check the attributes of the Table control and screen resolution.
Regards,
Anji
‎2007 Mar 05 6:34 AM
Hi Niranjan,
There are few possibilities... Which u have to check ...
1. Check How many lines are there in u r ITAB. I.e Debug and check lines in ITAB.
2. Check wheater u have taken number of lines in Considetaion or Not? using following code IN PBO....
LOOP AT <internal table> CURSOR <scroll-var>
[WITH CONTROL <table-control> ]
[FROM <line1> ] [TO <line2> ].
...<actions>...
ENDLOOP.
3. See on screem size of u r table control.
Lastly: Donot forget to Give points to those answers which u find helpful to you... : )
Cheers!!
DARSHAN
‎2007 Mar 05 6:38 AM
Hi
Before displaying the table control, put 10 in the lines attribute.
ex:
CONTROLS flights TYPE TABLEVIEW USING SCREEN 100.
flights-lines = 10.
In this case it displays 10 lines at a time
Hope this helps.
Regards,
Prasanth
Reward if it helps
‎2007 Mar 06 5:58 AM
Hi Prasanth,
It is not showing 10 lines.It's only showing 4 lines in my output.How to proceed?
‎2007 Mar 06 6:15 AM
HI,
jus check the screen resolution.
Goto desktop --> right click ---> properties ---> click settings ---> change desktop area i.e 1024 x 768 pixels...
u may get the result after this modification.
Senthil kumar
‎2007 Mar 09 2:20 PM
Hi SDN,
I solved the problem.There was a attribute in table control (RESIZING).When i unchecked it,the number of lines got exactly the as in layout.Thank you for all your inputs.