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

abap report performance

Former Member
0 Likes
725

Hi,

We are in the process of archiving data ( payroll clusters) on our system. During the testing of a program with archiving and without archiving, I was analyzing the performance of a custom report that fetches the data from payroll clusters. I had a queston related to it.

The impact on the database in the archived environment was drastically reduced as compared to the performance of the report in the non archived set up rightfully so. I got it. However the the execution time on the 'ABAP' program was more in the archived set up as compared to the execution time of the same in the non archived one. I did not understand this. Can anyone help me understand this?

I used SE30 (run time analysis) tool for my analysis.

Thanks in advance,

VG

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
696

you must tell us the absolute numbers, especially because many people compare percentages in this forum, and ABAP % will clearly increase if DB % go down.

5 REPLIES 5
Read only

HermannGahm
Product and Topic Expert
Product and Topic Expert
0 Likes
696

Hi Vinu,

> I used SE30 (run time analysis) tool for my analysis.

... and? what did you find out? Where is your time spent?

database access? or something else?

Have you measured BOTH executions... on the archived environment and

the non archived environment to find out the difference?

Without more information there is not much left to tell you... .

The only thing i experienced in similar problems (bad performance

after archiving) was related to not updated database statistics after

archiving... leading to non optimal execution plans... .

Kind regards,

Hermann

Read only

Former Member
0 Likes
697

you must tell us the absolute numbers, especially because many people compare percentages in this forum, and ABAP % will clearly increase if DB % go down.

Read only

0 Likes
696

Hi,

In the archived environment, the ABAP % increased from 20% to 60%, as compared to the non archive environment, where the DB was around 65% and ABAP % was 20. I did not understand the correlation to why ABAP% increases under archive environment?

Thanks,

VG

Read only

HermannGahm
Product and Topic Expert
Product and Topic Expert
0 Likes
696

Hi Vinu,

these percentages are not very interesting.

> I did not understand the correlation to why ABAP% increases under archive environment?

SE30 shows you the distribution of the total runtime (100%) in ABAP time (x %), DB time (y %) and System time (z %). So that x + y + z = 100 %

When DB % goes down, Sytsem % remains the same ABAP % has to go up, right?

To help you we need the absolute figures, as Siegfried already mentioned. Please go to the hit list for both traces and post the resutls here... then we can tell you further steps...

Kind regards,

Hermann

Read only

0 Likes
696

Thanks alot. I understood the equation. It makes sense now.

VG