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

Performance Issue with table A005

former_member239066
Participant
0 Likes
936

Hi Experts,

I am performing a select - for all entries on the table A005 (pooled table) and it is taking a lot of time. Can anyone please suggest an alternative? Is it a performance issue perform a for all entries on a pooled table?

Thanks,

Vitz.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
752

This is a pooled table , hence performance issue will be there.

Try to use some alternate table.

Also, a basic tip : check the internal table for initial before using for all entries.

3 REPLIES 3
Read only

Former Member
0 Likes
752

Hi

Try to use maximum key fields in u r select statement.

Use following fields as key in u select statment.

KAPPL

KSCHL

VKORG

VTWEG

KUNNR

MATNR

Regards,

Raghu.

Read only

Former Member
0 Likes
752

Hi Vitish ,

Instead of using pooled tables such as A005, you can use other tables konv where you will get the same data .

Select on pooled tables and Cluster tables hardly uses any indexes which results in solwer select times.

Just try with this hint , hopefully will be useful for you.

Regards,

Nikhil

Read only

Former Member
0 Likes
753

This is a pooled table , hence performance issue will be there.

Try to use some alternate table.

Also, a basic tip : check the internal table for initial before using for all entries.