<?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: about function'ws_download' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164750#M121478</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you ,Amit .i use your method and it works .my problem is solved .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Jan 2006 10:45:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-21T10:45:49Z</dc:date>
    <item>
      <title>about function'ws_download'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164747#M121475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello.&lt;/P&gt;&lt;P&gt;   i use this function to download an internal table to local file,then the charactor type fields was shorted ,for example :in internal table ,a field value is '00AA',when i use this function downloading to local file,it is '00A' in local file.&lt;/P&gt;&lt;P&gt;what's wrong about it?&lt;/P&gt;&lt;P&gt;example code:&lt;/P&gt;&lt;P&gt;  call function 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           CODEPAGE            = 'IBM'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            filename = 'c:\itab.dat'&lt;/P&gt;&lt;P&gt;            filetype = 'DAT'&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            data_tab = itab0.&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jan 2006 10:22:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164747#M121475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-21T10:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: about function'ws_download'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164748#M121476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. First check the internal table field length is sufficient to hold the complete value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Check the FM by changing like this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CODEPAGE = 'IBM'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;filename = 'c:\itab.dat'&lt;/P&gt;&lt;P&gt;filetype = 'ASC'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;data_tab = itab0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.If the bove doesn't work then try below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CODEPAGE = 'IBM'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;filename = 'c:\itab.txt'&lt;/P&gt;&lt;P&gt;filetype = 'DAT'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;data_tab = itab0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ramakrishna Prasad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jan 2006 10:28:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164748#M121476</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-01-21T10:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: about function'ws_download'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164749#M121477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rocky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Try using FM Gui_DOWNLOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jan 2006 10:35:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164749#M121477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-21T10:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: about function'ws_download'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164750#M121478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you ,Amit .i use your method and it works .my problem is solved .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jan 2006 10:45:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164750#M121478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-21T10:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: about function'ws_download'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164751#M121479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why can't i roward ? it comes an error:"Rewarding the message failed."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Jan 2006 10:49:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164751#M121479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-21T10:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: about function'ws_download'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164752#M121480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The points system is working now.&lt;/P&gt;&lt;P&gt;   U may pls award points&lt;/P&gt;&lt;P&gt;   to helpful answers !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jan 2006 05:21:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-function-ws-download/m-p/1164752#M121480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-24T05:21:27Z</dc:date>
    </item>
  </channel>
</rss>

