cancel
Showing results for 
Search instead for 
Did you mean: 

Error in file Upload

Former Member
0 Kudos

Dear All,

I am doing an Web dynpro Abap application.

In that application i download the data from a table in an Excel Sheet.

Save that excel sheet in Text(Tab Delimited) format.

I need to upload this file.

When i try to upload this file i get two "#" at the end of the of each row

for eg :a#b#1#2#3#4##c#d#5#6#7#8##e#f#9#10#11#12#13##

Because of this two # i am getting an error Unable to Read 4 as a number.

So i want to know how to remove this extra hash.

Priority:High

Regards,

Swapnil

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

was a help full reply helped alot to solve the prob and even today i can understand this problem quiet correctly

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

It isn't a # actually. It is another non-printable character. If you are tab delimited, then there is a tab at the end of each column. At the end of the row there would need to be a newline (or CRLF - Carriage Return Line Feed) character. I assume that is what you are seeing - a tab for the last column and then a newline character. How are you processing this input in the first place? You will need to adjust this logic to include the newline as well. Without knowing what logic you are currently using, it is difficult to say how you need to adjust it.