Quantcast
Channel: SCN: Message List - ABAP Connectivity
Viewing all articles
Browse latest Browse all 3125

Re: Downloading Data to excel using GUI_DOWNLOAD

$
0
0

Hi ,

Very late to reply.

 

Pass values in Filednames parameter.

 

Sample :

 

LOOP AT it_fcat_pnl INTO lw_fldcat.

 

     CLEAR :wa_field_name.

     wa_field_name-field_name = lw_fldcat-coltext.

     APPEND wa_field_name TO i_field_name.

 

     CLEAR : lw_fldcat.

   ENDLOOP.

 

CALL FUNCTION 'GUI_DOWNLOAD'

     EXPORTING

       filename                        = p_file

      filetype                        = 'ASC'

*     APPEND                          = ' '

      write_field_separator           = 'X'

 

*   IMPORTING

*     FILELENGTH                      =

     TABLES

      data_tab                        = <lfs_table>

      fieldnames                      = i_field_name

    EXCEPTIONS

      file_write_error                = 1

      no_batch                        = 2

      gui_refuse_filetransfer         = 3

      invalid_type                    = 4

      no_authority                    = 5

      unknown_error                   = 6

      header_not_allowed              = 7

      separator_not_allowed           = 8

      filesize_not_allowed            = 9

      header_too_long                 = 10

      dp_error_create                 = 11


Viewing all articles
Browse latest Browse all 3125

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>