<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to download ANSI coding text file using function GUI_DOWNLOAD? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054498#M423934</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved. I found it's related to the front end system. My computer is Chinese simplified version, I use the encoding page 8100.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2007 05:43:47 GMT</pubDate>
    <dc:creator>former_member198224</dc:creator>
    <dc:date>2007-04-16T05:43:47Z</dc:date>
    <item>
      <title>How to download ANSI coding text file using function GUI_DOWNLOAD?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054495#M423931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;  Is the coding page of the file created by funtion GUI_DOWNLOAD or WS_DOWNLOAD is ANSI or UTF-8? How to download a text file which's coding page is ANSI please?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this correct?&lt;/P&gt;&lt;P&gt;CALL function 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt; ....&lt;/P&gt;&lt;P&gt;  codepage = '4110'&lt;/P&gt;&lt;P&gt; importing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 07:25:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054495#M423931</guid>
      <dc:creator>former_member198224</dc:creator>
      <dc:date>2007-03-28T07:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to download ANSI coding text file using function GUI_DOWNLOAD?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054496#M423932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This Function Lodule will give the CODE PAGE VALUE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCP_CODEPAGE_BY_EXTERNAL_NAME ... You have to give type of tht ENcoding like ANSI ..etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call function 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;       filename                        = 'd:\customer_details.txt'&lt;/P&gt;&lt;P&gt;       filetype                        = 'ASC'&lt;/P&gt;&lt;P&gt;   CODEPAGE                        = code&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        data_tab                        = t_customer_details&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELDNAMES                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     exceptions&lt;/P&gt;&lt;P&gt;       file_write_error                = 1&lt;/P&gt;&lt;P&gt;       no_batch                        = 2&lt;/P&gt;&lt;P&gt;       gui_refuse_filetransfer         = 3&lt;/P&gt;&lt;P&gt;       invalid_type                    = 4&lt;/P&gt;&lt;P&gt;       no_authority                    = 5&lt;/P&gt;&lt;P&gt;       unknown_error                   = 6&lt;/P&gt;&lt;P&gt;       header_not_allowed              = 7&lt;/P&gt;&lt;P&gt;       separator_not_allowed           = 8&lt;/P&gt;&lt;P&gt;       filesize_not_allowed            = 9&lt;/P&gt;&lt;P&gt;       header_too_long                 = 10&lt;/P&gt;&lt;P&gt;       dp_error_create                 = 11&lt;/P&gt;&lt;P&gt;       dp_error_send                   = 12&lt;/P&gt;&lt;P&gt;       dp_error_write                  = 13&lt;/P&gt;&lt;P&gt;       unknown_dp_error                = 14&lt;/P&gt;&lt;P&gt;       access_denied                   = 15&lt;/P&gt;&lt;P&gt;       dp_out_of_memory                = 16&lt;/P&gt;&lt;P&gt;       disk_full                       = 17&lt;/P&gt;&lt;P&gt;       dp_timeout                      = 18&lt;/P&gt;&lt;P&gt;       file_not_found                  = 19&lt;/P&gt;&lt;P&gt;       dataprovider_exception          = 20&lt;/P&gt;&lt;P&gt;       control_flush_error             = 21&lt;/P&gt;&lt;P&gt;       others                          = 22&lt;/P&gt;&lt;P&gt;              .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      write : / 'Upload Failed' , sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      write : / 'Upload Completed'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 07:33:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054496#M423932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-28T07:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to download ANSI coding text file using function GUI_DOWNLOAD?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054497#M423933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What's the value you filled in variant code and what does the SCP_CODEPAGE_BY_EXTERNAL_NAME mean please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 07:54:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054497#M423933</guid>
      <dc:creator>former_member198224</dc:creator>
      <dc:date>2007-03-28T07:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to download ANSI coding text file using function GUI_DOWNLOAD?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054498#M423934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved. I found it's related to the front end system. My computer is Chinese simplified version, I use the encoding page 8100.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 05:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-download-ansi-coding-text-file-using-function-gui-download/m-p/2054498#M423934</guid>
      <dc:creator>former_member198224</dc:creator>
      <dc:date>2007-04-16T05:43:47Z</dc:date>
    </item>
  </channel>
</rss>

