Here is a sample workaround. You need to know the precision and scale value of FIELD_NAME.
select CHAR(RTRIM(char(integer(FIELD_NAME))) ||'.'||char(substr(char(decimal(FIELD_NAME,17,2)), 17))) from TABLE_NAME where row_id ='xxxxxx'
Hope this helps

,
-Nitya