Skip to Content
0
Former Member
Jul 19, 2008 at 04:54 PM

# in application server file.

53 Views

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.