‎2009 Dec 03 5:48 AM
Hello Experts,
I have two problems regarding table control.
1. I want data in the tabe control come in sorted order material no wise.
2. When I scroll the table control vertically , its very slow (performance issue)
Plz suggest,
Thanks & Regards,
Aastha
‎2009 Dec 03 5:51 AM
Hi Aastha,
Sort your internal table in the PBO. This would list the material number sorted in internal table.
Regarding performance, watch your code in PAI and tune for performance.
Regards
Suresh
‎2009 Dec 03 5:51 AM
Hi Aastha,
Sort your internal table in the PBO. This would list the material number sorted in internal table.
Regarding performance, watch your code in PAI and tune for performance.
Regards
Suresh
‎2009 Dec 04 4:32 AM
Hello Experts,
i vave developed one screen in which on press of PushButton no of records display in Table Control(no performance Issue).
But on scrolling of Table Control , it scrolls very slow.
Plz suggest,
Aastha
‎2009 Dec 04 5:17 AM
JUst put a /h bug point and hit the scroll button.
Just check whether the control is hanging in any query before it finishes the process logic.
‎2009 Dec 03 5:52 AM
Hi,
1. Sort your internal table before display in table control.
2. This may be due to large number of records in display, there is no issue with table control performance,you can performance tune your program for this.
‎2009 Dec 03 5:54 AM
Hi Astha,
For sorting:
Soon after selecting the records from database table into the internal table, use sort statement based on the material field. And then pass this internal table to the table control.
<ur select statement>
SORT itab by <material number field>.
Regards,
Swarna Munukoti.
‎2009 Dec 03 5:55 AM
sort your internal table assigned to the control based on maeterial no.