Application Development 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: 

CONVT_NO_NUMBER

Former Member
0 Kudos

Hi all,

We have many scanner accounts in our company. When we are trying to scan a HU which has 1,170 parts in a box it came up with a error showing CONVT_NO_NUMBER.

Unable to interpret "1,170 " as a Number.

Can any one help me out with this

Ravi

3 REPLIES 3

Former Member
0 Kudos

in ABAP code number should be in format as 1170 and not 1,170 .

As , exists in the number sap throws an error as invalid format for a number... remove the , from the number and it will work...

check code as

replace all occuurences of ',' with space in variable.

condense variable.

Former Member
0 Kudos

Thank you.

That would help us.

Former Member
0 Kudos

It should help you. This type of errors generally occurs in ABAP and the coding needs to be properly handled so that commas are been removed from quantity and currency fields...