Flash_1975 написал(а):
чё за ошибка(дамп?)..и чё в нотах говорят?
Code:
ABAP-динамич. ошибка TIME_OUT
Возникла: 03.09.2007 в 11:08:04
>> ABAP-дамп сохранен не полностью (слишком большой)
Time limit exceeded.
Что произошло?
The program "SAPLLAW_MODULES_1 " has exceeded the maximum permitted runtime
and has therefore been terminated.
Что Вы можете сделать?
Note the actions and input that caused the error.
Inform your SAP system administrator.
You can print out this message by choosing "Print". Transaction ST22
allows you to display and manage termination messages, including keeping
them beyond their normal deletion date.
Анализ ошибки
After a certain time, the program terminates to free the work process
for other users who are waiting.
This is to stop work processes being blocked for too long by
- Endless loops (DO, WHILE, ...),
- Database acceses with large result sets,
- Database accesses without an apporpriate index (full table scan)
- database accesses producing an excessively large result set,
The maximum runtime of a program is set by the profile parameter
"rdisp/max_wprun_time".
The current setting is 600 seconds. After this, the system gives the
program a second chance. During the first half (>= 600 seconds), a
call that is blocking the work process (such as a long-running SQL
statement) can occur. While the statement is being processed, the
database layer will not allow it to be interrupted. However, to
stop the program terminating immediately after the statement has been
successfully processed, the system gives it another 600 seconds.
Hence the maximum runtime of a program is at least twice the value of
the system profile parameter "rdisp/max_wprun_time".
Может быть, что ошибка в программе? На других серверах все работает нормально.