cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function Module time out

dti_gpe
Explorer
0 Likes
3,176
Hello expert

I have faced a problem with my function module that prints an account report for a web service.

When running my function module, it gives me the error Dump timeout, through analysis I realized that it is taking a long time to read a table. however I didn't have this problem before with the same function module it took around 1 to 3 minutes to load the data, but now it does around 10 to 15 minutes.
View Entire Topic
RaymondGiuseppi
Active Contributor
0 Likes

You already called SE30 (you could call SAT as SE30 is nearly obsolete)

Could you also execute a SQL trace with ST05 and analyze the SQL statements that hinder your program. (look for bad performance access or even full table scan)

I also suspect you have some SELECT embeded in some LOOP, could you try to remove those, either changing the previous access to database, or using some FOR ALL ENTRIES as a lowe problem.