cancel
Showing results for 
Search instead for 
Did you mean: 

run time error shows time _out error

Former Member
0 Kudos

hi experts ,

could you please solve this my present issue

run time erro shows time_out error

Error analysis

After a specific time, the program is terminated to make the work area

available to other users who may be waiting.

This is to prevent a work area being blocked unnecessarily long by, for

example:

- Endless loops (DO, WHILE, ...),

- Database accesses with a large result set

- Database accesses without a suitable index (full table scan)

The maximum runtime of a program is limited by the system profile

parameter "rdisp/max_wprun_time". The current setting is 600 seconds. If this

time limit is

exceeded, the system attempts to cancel any running SQL statement or

signals the ABAP processor to stop the running program. Then the system

waits another 60 seconds maximum. If the program is then still active,

the work process is restarted.

how can i solve this with out restarting my server

please

Accepted Solutions (1)

Accepted Solutions (1)

sunny_pahuja2
Active Contributor
0 Kudos

Hi,

>

> The maximum runtime of a program is limited by the system profile

> parameter "rdisp/max_wprun_time". The current setting is 600 seconds. If this

> time limit is

> exceeded, the system attempts to cancel any running SQL statement or

> signals the ABAP processor to stop the running program. Then the system

> waits another 60 seconds maximum. If the program is then still active,

> the work process is restarted.

Since parameter (rdisp/max_wprun_time) has value of 600 seconds, so if any user will execute any transaction/report in dialog work process and it is taking time more then 600 seconds then it will cancel that transaction and give time_out error. So, either you can increase this parameter or run long running reports in background.

Thanks

Sunny

Former Member
0 Kudos

hi sunny,

thanks for your reply

Answers (0)