I have uploaded a tab delimited file from application server to internal table,but '#' is coming in place of tab in internal table.
To remove that I have used this method
CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
SPLIT record AT CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
INTO table or fields.
This works but in my int table there are some currency fields,so I am getting a syntax error for this currency fields saying it should be of type c,n,d,t,x.
Can anybody please tell me how to handle it.