Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Table Control

Former Member
0 Likes
575

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

1 ACCEPTED SOLUTION
Read only

SureshRa
Active Participant
0 Likes
546

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

6 REPLIES 6
Read only

SureshRa
Active Participant
0 Likes
547

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

Read only

Former Member
0 Likes
546

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

Read only

0 Likes
546

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.

Read only

Former Member
0 Likes
546

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.

Read only

former_member217544
Active Contributor
0 Likes
546

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.

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
546

sort your internal table assigned to the control based on maeterial no.