Skip to Content
0
Former Member
Jan 09, 2008 at 09:27 AM

ABAP - Data Type Short Dump

189 Views

Hello,

I am reading data from an excel sheet into a Function Module. In the excel sheet, when i enter 1000, it gets converted into 1,000.00 since its an amount value. This value is being stored in the function mdoule into an internal table (itab) that has a field 'Value' of type C (Length - 60).

In the FM, i defined a variable 'amt' of data type P.

amt = itab-value.

When i executed the Function Moule, i get a short dump saying 'Unable to interpret '1,000.00' as a number'. How to overcome this issue?

Please suggest.

Thanks