<?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: Error while downloading file in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426870#M204525</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if you have rights to create files in the folder folder.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Jun 2006 20:47:44 GMT</pubDate>
    <dc:creator>LucianoBentiveg</dc:creator>
    <dc:date>2006-06-30T20:47:44Z</dc:date>
    <item>
      <title>Error while downloading file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426868#M204523</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;&lt;/P&gt;&lt;P&gt; I am facing some problem while downloading the data to presentation server.In the program they are using the FM 'WS_DOWNLOAD' to download the file.But its not working and setting the sy-subrc eq 2 which means 'Cannot Write to File'.wat could be the possible reasons?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426868#M204523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T20:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Error while downloading file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426869#M204524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Might be the file name is already exitings? or the path is invalid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:47:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426869#M204524</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-06-30T20:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Error while downloading file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426870#M204525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check if you have rights to create files in the folder folder.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:47:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426870#M204525</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-06-30T20:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: Error while downloading file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426871#M204526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; That error pops up if you donot have authorizations in creating/writing a file on the presentation server ...and also if the file path that you have given is incorrect......&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* download report to file
  CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
      filename = 'C:tempreport.txt'
      filetype = 'ASC'
    TABLES
      data_tab = it_report.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check whether you have passed the parameters as per this&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/rep_capturerep.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/rep_capturerep.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else please paste your code here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 20:49:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426871#M204526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T20:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Error while downloading file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426872#M204527</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;The data could not be loaded into the front end file. Possible reasons:&lt;/P&gt;&lt;P&gt;- File name has the wrong format&lt;/P&gt;&lt;P&gt;- Error in operating system or network&lt;/P&gt;&lt;P&gt;- No authorization to create or write to this file&lt;/P&gt;&lt;P&gt;- Data locked by another user&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jun 2006 21:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-downloading-file/m-p/1426872#M204527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-30T21:13:10Z</dc:date>
    </item>
  </channel>
</rss>

