Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CONVT_NO_NUMBER

manubhutani
Active Contributor
0 Likes
1,149

Hi Gurus

In sap system, a job which is running program RBDAPP01 (pull i/b idocs forcefully).

is getting cancelled with error 'CONVT_NO_NUMBER'.

please help

regards

manu

Hi Gurus

In sap system, a job which is running program RBDAPP01 (pull i/b idocs forcefully).

is getting cancelled with error 'CONVT_NO_NUMBER'.

please help

regards

manu

4 REPLIES 4
Read only

Former Member
0 Likes
896

there is difference in user number Format system is looking for and the one you are passing.

for example,

systeme is looking for 100,000.00 and you are passing 100.000,00.

note the period and decimal separators.

Read only

former_member156446
Active Contributor
0 Likes
896

[ABAP Dump CONVT_NO_NUMBER|http://www.saptechies.com/abap-dump-convtnonumber/]

[exception CX_SY_CONVERSION_NO_NUMBER|http://help.sap.com/saphelp_webas610/helpdata/en/c3/021950f06111d4b2eb0050dadfb92b/content.htm]

Read only

sarbajitm
Contributor
0 Likes
896

you can keep your line of assignment statement within the catch...endcatch statement. If any error occur during assignment it will catch that so you don't face the problem of dump. But for successful assignment you have to format the number properly.

CATCH SYSTEM-EXCEPTIONS conversion_errors = 1.

"your line of assignment statement

ENDCATCH.

IF sy-subrc = 1.

MESSAGE i012 DISPLAY LIKE 'E'.

ENDIF.

you also can check the FM NUMERIC_CHECK

Regards.

sarbajit

Edited by: Sarbajit Majumdar on Mar 12, 2009 6:45 PM

Read only

Former Member
0 Likes
896

Check OSS:392637