cancel
Showing results for 
Search instead for 
Did you mean: 

Error "CONVT_NO_NUMBER" while performing user measurement with USMM

Former Member
0 Kudos

Hi,

While running user measurement with USMM I am getting following run

time error.

To be specific - After preselections in USMM->system measurement->while

checking Green Check mark this error is screaming up.

Ae per Note - 1230640 :- You call transaction USMM and want to cancel

the user measurement using the cancel button (red 'X') on the dialog

box of the user measurement. However, the measurement continues and is

completed as if you had chosen the ok button (green check mark).

Above note is applied if the problem comes if we check red button

rather than green check mark.

Please suggest us the best way to procees.

ST22 details:-

Runtime Errors CONVT_NO_NUMBER

Exception CX_SY_CONVERSION_NO_NUMBER

Date and Time 09/16/2008 07:42:32

Short text

Unable to interpret " 1,410 " as a number.

What happened?

Error in the ABAP Application Program

The current ABAP program "RSUVM001" had to be terminated because

it has

come across a statement that unfortunately cannot be executed.

What can you do?

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.

Error analysis

An exception occurred that is explained in detail below.

The exception, which is assigned to

class 'CX_SY_CONVERSION_NO_NUMBER', was not

caught and

therefore caused a runtime error.

How to correct the error

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:

[mantissa]E[algebraic sign][exponent]

[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"

"RSUVM001" or "RSUVM001"

"START-OF-SELECTION"

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)

Information on where terminated

Termination occurred in the ABAP program "RSUVM001" - in "START-OF-

SELECTION".

The main program was "RSUVM001 ".

In the source code you have the termination point in line 96

of the (Include) program "RSUVM001".

85 * Analyze the user records.

86 CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'

87 EXPORTING

88 text = 'Die Benutzerstammsätze werden analysiert.'(002).

89 * PERFORM analyze_user_records.

90

91 CALL FUNCTION 'SLIM_USER_MEASUREMENET'

92 CHANGING

93 SLIM_TUREP = LT_TUREP.

94 .

95 LOOP AT LT_TUREP INTO LS_TUREP .

>>>>> MOVE-CORRESPONDING LS_TUREP TO ITUREP.

97 APPEND ITUREP.

98 ENDLOOP.

99

100 * Submit Application measurements as batch jobs.

101 * Save additional data about this analysis in the DB.

102 * we need meas-no ,v-date at the batch

any ideas?

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Srikanth,

The below Notes helps you to solve the issue.

Please review the below Notes.

Note 1117010 - Runtime error CONVT_NO_NUMBER in RSUVM001

Note 1115924 - USMM composite SAP Note: Problems after importimg new SPs

Thanks & Regards,

Pradeep Srigiri

Former Member
0 Kudos

Thanks Pradeep,

Done with Note 1117010 - Runtime error CONVT_NO_NUMBER in RSUVM001

Good time.