Skip to Content
0
Former Member
Jul 07, 2009 at 05:24 PM

help needed on FM upload gui

36 Views

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