<?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: Function Gui_Download - Error calling Data Provider in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553463#M1658397</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Parupelly , im not trying to upload but to download and file it is a PDF file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the file name is like this DIR1000.pdf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards and thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Jan 2012 12:47:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-01-30T12:47:34Z</dc:date>
    <item>
      <title>Function Gui_Download - Error calling Data Provider</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553460#M1658394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello masters, i develop a program that catches a pdf file and then we can download. in windows everything is working but the client uses Linux and SAP Gui For Linux and when is making download of file, systems throws message FES011 - Error calling Data Provider.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i'm using windows the path is build correct way but i'm using Linux the path isn't build correct, for example like this,  /home/rui/desktop\dir_1000.pdf . in debug i changed \ to / but systems throws the same error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Someone have some clue to solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
  CONCATENATE gv_dir '\DIR_' &amp;lt;fs_final_alv&amp;gt;-pernr
                  '.pdf' INTO lv_fich.

      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = lv_fich
          filetype                = 'BIN'
        TABLES
          data_tab                = lt_pdf_output
        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
          dp_error_send           = 12
          dp_error_write          = 13
          unknown_dp_error        = 14
          access_denied           = 15
          dp_out_of_memory        = 16
          disk_full               = 17
          dp_timeout              = 18
          file_not_found          = 19
          dataprovider_exception  = 20
          control_flush_error     = 21
          OTHERS                  = 22.
      IF sy-subrc &amp;lt;&amp;gt; 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards and thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jan 2012 19:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553460#M1658394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-27T19:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Function Gui_Download - Error calling Data Provider</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553461#M1658395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;validate the path..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;/home/rui/desktop/dir_1000.pdf &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;check the case of the path.. as its case sensitive in linux and check if there is a space left some where.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jan 2012 05:07:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553461#M1658395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-29T05:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Function Gui_Download - Error calling Data Provider</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553462#M1658396</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;I think there is a problem with the .txt file you are trying to upload. &lt;/P&gt;&lt;P&gt;Check that the file name has no non-numeric characters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jan 2012 14:55:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553462#M1658396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-29T14:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Function Gui_Download - Error calling Data Provider</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553463#M1658397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Parupelly , im not trying to upload but to download and file it is a PDF file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the file name is like this DIR1000.pdf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards and thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2012 12:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553463#M1658397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-30T12:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Function Gui_Download - Error calling Data Provider</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553464#M1658398</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;Maybe this is authorization issue? If I were you, I would try to save any data on local computer from any standard SAP transaction (spool or anything). If it works then set break-point inside this FM, check what parameters are passed.&lt;/P&gt;&lt;P&gt;If problem really is data provider, then maybe if you reinstall sap logon it will help.&lt;/P&gt;&lt;P&gt;Try it and please share results with us.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Marcin Cholewczuk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2012 13:42:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553464#M1658398</guid>
      <dc:creator>marcin_cholewczuk</dc:creator>
      <dc:date>2012-01-30T13:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: Function Gui_Download - Error calling Data Provider</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553465#M1658399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello masters, thanks to all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Soumyaprakash was right... just because Linux is case-sensative, the system was putting all letters of path in upper case &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just change in screen painter the field to accept upper/lower letters and now system mantain the letters has they come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards and thanks one more time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jan 2012 18:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-gui-download-error-calling-data-provider/m-p/8553465#M1658399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-01-30T18:07:24Z</dc:date>
    </item>
  </channel>
</rss>

