cancel
Showing results for 
Search instead for 
Did you mean: 

BSP Exception: CX_SY_CONVERSION_NO_NUMBER

Former Member
0 Kudos

Hello,

Kindly provide help on how to handle exceptions in bsp.

For the exception class: CX_SY_CONVERSION_NO_NUMBER having exception id: CONVT_NO_NUMBER, I would like to know why this excetion occurs and how can it be handeled.

Thanks and Regards,

Reema

Accepted Solutions (0)

Answers (1)

Answers (1)

rainer_liebisch
Contributor
0 Kudos

Hi Reema,

everything should be explained in the error you get.

CX_SY_CONVERSION_NO_NUMBER is the system exception for a conversion into a number. For example:


data: num type i,
      char type c.

  char = 'X'.
  num = char.

There you get this error, because in this case you try to convert a character into a number which is not possible.

Regards,

Rainer