Доброго дня всем. Помогите с дампом ПОЖАЛУЙСТА валится каждые 5 минут. НАДО ПОБОРОТЬ ЕГО!!!! Не могу понять в чем косяк,уже ноты прочитал,ядро обновил.
Динамическая ошибка CONVT_NO_NUMBER ОсобСит CX_SY_CONVERSION_NO_NUMBER Дата и время 16.02.2012 16:51:24
Краткий текст Unable to interpret 85968 as a number.
Что произошло? Error in the ABAP Application Program
The current ABAP program "RSDSPROC" had to be terminated because it has come across a statement that unfortunately cannot be executed.
Что Вы можете сделать? 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. Анализ ошибки An exception occurred that is explained in detail below. The exception, which is assigned to class 'CX_SY_CONVERSION_NO_NUMBER', was not caught in procedure "AL_PRC_REPORT_VALUES" "(FORM)", nor was it propagated by a RAISING clause. Since the caller of the procedure could not have anticipated that the exception would occur, the current program is terminated. The reason for the exception is: The program attempted to interpret the value 85968 as a number, but since the value contravenes the rules for correct number formats, this was not possible.
Указания по устранению ошибки Whole numbers are represented in ABAP as a sequence of numbers, possibly with an algebraic sign. The following are the possibilities for the representation of floating point numbers: [algebraic sign][mantissa]E[algebraic sign][exponent] [algebraic sign][whole number part].[fraction part] For example, -12E+34, +12E-34, 12E34, 12.34 If the error occurred in your own ABAP program or in an SAP program you modified, try to remove the error. 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:
"CONVT_NO_NUMBER" "CX_SY_CONVERSION_NO_NUMBER" "RSDSPROC" or "RSDSPROC" "AL_PRC_REPORT_VALUES"
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.
The exception must either be prevented, caught within proedure "AL_PRC_REPORT_VALUES" "(FORM)", or its possible occurrence must be declared in the RAISING clause of the procedure. To prevent the exception, note the following: Информация о месте прерывания Termination occurred in the ABAP program "RSDSPROC" - in "AL_PRC_REPORT_VALUES". The main program was "RSDSPROC ".
In the source code you have the termination point in line 746 of the (Include) program "RSDSPROC". The program "RSDSPROC" was started as a background job. Job Name....... " " Job Initiator.. " " Job Number..... " " The termination is caused because exception "CX_SY_CONVERSION_NO_NUMBER" occurred in procedure "AL_PRC_REPORT_VALUES" "(FORM)", but it was neither handled locally nor declared in the RAISING clause of its signature.
The procedure is in program "RSDSPROC "; its source code begins in line 707 of the (Include program "RSDSPROC ". Фрагмент исходного текста программы
Строк ИсхднТкст
716 717 DATA: used_percent LIKE alperfrval-newpvalsum, 718 selfmon_msgarg_c1(50), selfmon_msgarg_c2(50), 719 total_p_val LIKE alperfrval-newpvalsum. 720 721 DATA: ressize TYPE i, 722 privpages TYPE i. 723 724 CALL FUNCTION 'SALI_PERF_REPORT_VALUE' 725 EXPORTING 726 total_of_reported_values = proc_single-proccnt 727 * NUMBER_OF_REPORTED_VALUES = 1 728 reportedby = reportedby 729 CHANGING 730 tid = prc_number_prc_tid 731 EXCEPTIONS 732 OTHERS = 0. 733 * ignore sy-subrc 734 735 CALL FUNCTION 'SALI_PERF_REPORT_VALUE' 736 EXPORTING 737 total_of_reported_values = proc_single-cpuutil 738 * NUMBER_OF_REPORTED_VALUES = 1 739 reportedby = reportedby 740 CHANGING 741 tid = prc_cpuutil_tid 742 EXCEPTIONS 743 OTHERS = 0. 744 * ignore sy-subrc 745 >>> MOVE proc_single-ressize TO ressize. 747 CALL FUNCTION 'SALI_PERF_REPORT_VALUE' 748 EXPORTING 749 total_of_reported_values = ressize 750 * NUMBER_OF_REPORTED_VALUES = 1 751 reportedby = reportedby 752 CHANGING 753 tid = prc_ressize_tid 754 EXCEPTIONS 755 OTHERS = 0. 756 757 IF sy-opsys EQ 'Windows NT' OR sy-opsys EQ 'WINDOWS NT' 758 OR sy-opsys(3) = 'WIN'. 759 760 MOVE proc_single-privpages TO privpages. 761 CALL FUNCTION 'SALI_PERF_REPORT_VALUE' 762 EXPORTING 763 total_of_reported_values = privpages 764 * NUMBER_OF_REPORTED_VALUES = 1 765 reportedby = reportedby
|
|