‎2008 Jan 02 12:51 PM
Hi ,
I am uploading Tab delimited Text file with GUI_Upload to an internal table...
But in internal table # is coming for every - in my text file..
The rest of the field values are just fine..
What to do..??
‎2008 Jan 02 12:58 PM
In gui_upload u have to mention that
import parameter - HAS_FIELD_SEPARATOR = 'X'.
‎2008 Jan 02 12:58 PM
In gui_upload u have to mention that
import parameter - HAS_FIELD_SEPARATOR = 'X'.
‎2008 Jan 02 1:05 PM
Hi Dhanu,
I think your text file has tab delimited that is tab seperator when you upload that file in to your internal table by using GUI_UPLOAD , you mention HAS_FIELD_SEPARATOR = 'X' for the export parameter in your program .
Note : Tab is non printable character in So it displays # in that place. In SAP if any non printable charactors then it displays ## in that place so use that parameter for overcoame your problem.
Plzz Reward if it is useful,
Mahi.
Edited by: Maheswari Chegu on Jan 2, 2008 2:05 PM
‎2008 Jan 02 1:13 PM
Hi,
some times tab delimeter will look like '#', don't worry about it, try to split that record using tab seperator, it will work.
you can use the tab seperator class module for that.
tab seperator class module: CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB
Reward if useful.
Thanks,
Sreeram.
‎2008 Jan 02 1:19 PM
these are the false entries thrown by the system when it is not able to understand the format.
you have already got an answer you just need to pass the parameter
has_field_separator = 'X'
tats it
thnkx
bhanu