<?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: problem with gui_upload in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001499#M709155</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please check your filepath and the parameter decalration for the filepath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Oct 2007 19:44:37 GMT</pubDate>
    <dc:creator>SAPAI</dc:creator>
    <dc:date>2007-10-30T19:44:37Z</dc:date>
    <item>
      <title>problem with gui_upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001494#M709150</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 trying to upload the excel data thru bdc recording method.&lt;/P&gt;&lt;P&gt;after declaring table and internal tables i am calling gui_upload and in the file name i gave the path and data tab = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while executing the it is giving error message 'FILE NOT AVAILABLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what exactly the error i am not able to predict&lt;/P&gt;&lt;P&gt;plz helep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 04:11:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001494#M709150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T04:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: problem with gui_upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001495#M709151</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;File manuplations............................... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. At the presentation level:&lt;/P&gt;&lt;P&gt;-&amp;gt;GUI_UPLOAD&lt;/P&gt;&lt;P&gt;-&amp;gt;GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;-&amp;gt;CL_GUI_FRONTEND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. At the application server level:&lt;/P&gt;&lt;P&gt;-&amp;gt;OPEN DATASET : open a file in the application server for reading or writing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt;READ DATASET : used to read from a file on the application server that has been opened for reading&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; TRANSFER DATASET : writing data to a file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; CLOSE DATASET : closes the file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; DELETE DATASET : delete file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;************************************************************************************************&lt;/P&gt;&lt;P&gt;If file is on the local PC,use the function module GUI_UPLOAD to upload it into an internal table by passing the given parameters......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;filename = p_file&lt;/P&gt;&lt;P&gt;filetype = 'ASC'&lt;/P&gt;&lt;P&gt;has_field_separator = '#'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;data_tab = t_data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******************************************************************************&lt;/P&gt;&lt;P&gt;p_file : excel file path.&lt;/P&gt;&lt;P&gt;t_data : internal table&lt;/P&gt;&lt;P&gt;*******************************************************************************&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward points if useful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Vinod Samuel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 04:25:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001495#M709151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T04:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: problem with gui_upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001496#M709152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls explain me ur problem correctly or post ur code not complete code.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope the file path may be wrong or Parameter declaration of filename may be wrong.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;parameter      : p_path  type rlgrap-filename.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have u declared like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if useful......&lt;/P&gt;&lt;P&gt;Harimanjesh AN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 04:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001496#M709152</guid>
      <dc:creator>harimanjesh_an</dc:creator>
      <dc:date>2007-10-30T04:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem with gui_upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001497#M709153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; for file name you have to provide path of the file which is available in presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g. C:/test.txt .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghavendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 04:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001497#M709153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-30T04:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: problem with gui_upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001498#M709154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Krishna..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paste ur code to find the Error reason.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Varma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 04:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001498#M709154</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-10-30T04:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem with gui_upload</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001499#M709155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please check your filepath and the parameter decalration for the filepath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Oct 2007 19:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-gui-upload/m-p/3001499#M709155</guid>
      <dc:creator>SAPAI</dc:creator>
      <dc:date>2007-10-30T19:44:37Z</dc:date>
    </item>
  </channel>
</rss>

