stayer написал:
Скиньте дамп сюда
Легко
Динамическая ошибка MESSAGE_TYPE_X
Дата и время 31.07.2009 16:06:08
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Краткий текст |
| The current application triggered a termination with a short dump. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Что произошло? |
| The current application program detected a situation which really |
| should not occur. Therefore, a termination with a short dump was |
| triggered on purpose by the key word MESSAGE (type X). |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Что Вы можете сделать? |
| Note down which actions and inputs caused the error. |
| |
| |
| To process the problem further, contact you SAP system |
| administrator. |
| |
| Using Transaction ST22 for ABAP Dump Analysis, you can look |
| at and manage termination messages, and you can also |
| keep them for a long time. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Анализ ошибки |
| Short text of error message: |
| Система управляющих элементов: ошибка при адм-нии управляющего элемента. |
| |
| Long text of error message: |
| |
| Technical information about the message: |
| Message class....... "CNDP" |
| Number.............. 006 |
| Variable 1.......... " " |
| Variable 2.......... " " |
| Variable 3.......... " " |
| Variable 4.......... " " |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Указания по устранению ошибки |
| Probably the only way to eliminate the error is to correct the program. |
| - |
| |
| If the error occures in a non-modified SAP program, you may be able to |
| find an interim solution in an SAP Note. |
| If you have access to SAP Notes, carry out a search with the following |
| keywords: |
| |
| "MESSAGE_TYPE_X" " " |
| "SAPLOLEA" or "LOLEAU02" |
| "AC_SYSTEM_FLUSH" |
| |
| If you cannot solve the problem yourself and want to send an error |
| notification to SAP, include the following information: |
| |
| 1. The description of the current problem (short dump) |
| |
| To save the description, choose "System->List->Save->Local File |
| (Unconverted)". |
| |
| 2. Corresponding system log |
| |
| Display the system log by calling transaction SM21. |
| Restrict the time interval to 10 minutes before and five minutes |
| after the short dump. Then choose "System->List->Save->Local File |
| (Unconverted)". |
| |
| 3. If the problem occurs in a problem of your own or a modified SAP |
| program: The source code of the program |
| In the editor, choose "Utilities->More |
| Utilities->Upload/Download->Download". |
| |
| 4. Details about the conditions under which the error occurred or which |
| actions and input led to the error. |
| |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Системная среда |
| SAP-Release 700 |
| |
| Application server... "sap1" |
| Network address...... "ххх.ххх.ххх.ххх" |
| Operating system..... "AIX" |
| Release.............. "5.3" |
| Hardware type........ "00C070544C00" |
| Character length.... 8 Bits |
| Pointer length....... 64 Bits |
| Work process number.. 0 |
| Shortdump setting.... "full" |
| |
| Database server... "sapdbsrv" |
| Database type..... "DB6" |
| Database name..... "WPR" |
| Database user ID.. "SAPWPR" |
| |
| Terminal................. " " |
| |
| Char.set.... "ru_RU.ISO8859-5" |
| |
| SAP kernel....... 700 |
| created (date)... "Jan 23 2008 20:59:36" |
| create on........ "AIX 2 5 005DD9CD4C00" |
| Database version. "DB6_81 " |
| |
| Patch level. 144 |
| Patch text.. " " |
| |
| Database............. "DB6 08.02.*, DB6 09.*" |
| SAP database version. 700 |
| Operating system..... "AIX 1 5, AIX 2 5, AIX 3 5, AIX 1 6" |
| |
| Memory consumption |
| Roll.... 16128 |
| EM...... 37709280 |
| Heap.... 0 |
| Page.... 40960 |
| MM Used. 14936328 |
| MM Free. 22768824 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Пользователь, транзакция... |
| |
| Client.............. 400 |
| User................ "USER03" |
| Language key........ "R" |
| Transaction......... " " |
| Transactions ID..... "4A72966A72370052E1008000C0A80315" |
| |
| Program............. "SAPLOLEA" |
| Screen.............. "SAPLSMTR_NAVIGATION 0100" |
| Screen line......... 0 |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Информация о месте прерывания |
| Termination occurred in the ABAP program "SAPLOLEA" - in "AC_SYSTEM_FLUSH". |
| The main program was "SAPLSMTR_NAVIGATION ". |
| |
| In the source code you have the termination point in line 29 |
| of the (Include) program "LOLEAU02". |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Фрагмент исходного текста программы |
----------------------------------------------------------------------------------------------------
|Строк|ИсхднТкст |
----------------------------------------------------------------------------------------------------
| 1|FUNCTION AC_SYSTEM_FLUSH . |
| 2|*"---------------------------------------------------------------------- |
| 3|*"*"Lokale Schnittstelle: |
| 4|*" IMPORTING |
| 5|*" VALUE(CALLED_BY_SYSTEM) TYPE C OPTIONAL |
| 6|*" EXCEPTIONS |
| 7|*" CNTL_SYSTEM_ERROR |
| 8|*" CNTL_ERROR |
| 9|*"---------------------------------------------------------------------- |
| 10| data: sysubrc like sy-subrc. |
| 11| |
| 12| CALL FUNCTION 'AC_FLUSH_CALL' |
| 13| EXPORTING |
| 14| SYSTEM_FLUSH = 'X' |
| 15| CALLED_BY_SYSTEM = CALLED_BY_SYSTEM |
| 16| IMPORTING |
| 17| MESSAGE_NR = sysubrc |
| 18| MESSAGE_TEXT = SY-MSGLI. |
| 19| |
| 20| sy-subrc = sysubrc. |
| 21| |
| 22| CASE SY-SUBRC. |
| 23| WHEN 0. |
| 24| WHEN 1. |
| 25|* system_error |
| 26| MESSAGE ID 'CNDP' TYPE 'X' NUMBER 007 RAISING CNTL_SYSTEM_ERROR. |
| 27| WHEN 2. |
| 28|* method_call_error |
|>>>>>| MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR. |
| 30| WHEN 3. |
| 31|* property_set_error |
| 32| MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR. |
| 33| WHEN 4. |
| 34|* property_get_error |
| 35| MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR. |
| 36| WHEN OTHERS. |
| 37| RAISE CNTL_ERROR. |
| 38| ENDCASE. |
| 39| |
| 40|ENDFUNCTION. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Содержимое системных полей |
----------------------------------------------------------------------------------------------------
|Имя |Знач |
----------------------------------------------------------------------------------------------------
|SY-SUBRC|2 |
|SY-INDEX|0 |
|SY-TABIX|13 |
|SY-DBCNT|0 |
|SY-FDPOS|40 |
|SY-LSIND|0 |
|SY-PAGNO|0 |
|SY-LINNO|1 |
|SY-COLNO|1 |
|SY-PFKEY|SESSION |
|SY-UCOMM| |
|SY-TITLE|SAP Easy Access - МенюПользователя USER03 |
|SY-MSGTY|X |
|SY-MSGID|CNDP |
|SY-MSGNO|006 |
|SY-MSGV1| |
|SY-MSGV2| |
|SY-MSGV3| |
|SY-MSGV4| |
|SY-MODNO|0 |
|SY-DATUM|20090731 |
|SY-UZEIT|160608 |
|SY-XPROG|SAPMSSY1 |
|SY-XFORM|XAB_READ |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Активные вызовы/события |
----------------------------------------------------------------------------------------------------
|№ Вид Программа Include Строк |
| Имя |
----------------------------------------------------------------------------------------------------
| 4 FUNCTION SAPLOLEA LOLEAU02 29 |
| AC_SYSTEM_FLUSH |
| 3 FORM SAPFGUICNTL SAPFGUICNTL 256 |
| HANDLE_FLUSH_PBO |
| 2 FORM SAPMSSYD SAPMSSYD 191 |
| %_CTL_OUTPUT_FLUSH |
| 1 MODULE (PBO) SAPMSSYD SAPMSSYD 180 |
| %_CTL_OUTPUT_FLUSH |
----------------------------------------------------------------------------------------------------