Hi
I am trying to upload data from an XL file into an internal table.
I have defined the internal table as type string ,
but the data is not getting uploaded properly.
I have used the following input parameters
CALL FUNCTION 'GUI_UPLOAD'
EXPORTING
filename = filename
FILETYPE = 'ASC'
HAS_FIELD_SEPARATOR = ' '
HEADER_LENGTH = 0
READ_BY_LINE = 'X'
DAT_MODE = ' '
CODEPAGE = ' '
IGNORE_CERR = ABAP_TRUE
REPLACEMENT = '#'
CHECK_BOM = ' '
VIRUS_SCAN_PROFILE =
NO_AUTH_CHECK = ' '
IMPORTING
FILELENGTH =
HEADER =
tables
data_tab = itab_dw.
the output i am getting as just one column internal table .
How should i proceed?
Regards,
Harshit Rungta