‎2010 Aug 05 4:06 PM
Hi,
I am required to insert the data into a database table using field symbols. I have read the data into one string variable in a field symbol. But the structure of the database table has a decimal field and is hence throwing an run time exception. I tried to change few things using field symbols and it did not work. Any thoughts or leads shall be really helpful..
data: v_tabledata(2575) type c,
field-symbols: <fs_table> type any,
<fs_table2> type standard table,
<fs_string> type c.
v_tabledata has the first record that needs to go into the table...
assign v_tabledata to <fs_table>.
modify (v_tabname) from <fs_table>. -
> runtime exception that unicode conversion error...
Thanks in advance,
VG
‎2010 Aug 05 4:27 PM