2009 Mar 12 1:05 PM
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
2009 Mar 12 1:07 PM
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.
2009 Mar 12 1:10 PM
[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]
2009 Mar 12 1:14 PM
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
2009 Mar 12 1:22 PM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |