<?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 File uploading error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713863#M1579375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting an error, when i am uploading a file. This is because of &lt;STRONG&gt;File Path is more that 1024 char's&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using Method FILE_OPEN_DIALOG. &lt;/P&gt;&lt;P&gt;File name size is 1024.&lt;/P&gt;&lt;P&gt;FILENAME		CHAR	1024	0	File name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me the ulternate solution for uploading a large file path ( more that 1024 char)  files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgards,&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Mar 2011 11:11:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-02T11:11:17Z</dc:date>
    <item>
      <title>File uploading error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713863#M1579375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am getting an error, when i am uploading a file. This is because of &lt;STRONG&gt;File Path is more that 1024 char's&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using Method FILE_OPEN_DIALOG. &lt;/P&gt;&lt;P&gt;File name size is 1024.&lt;/P&gt;&lt;P&gt;FILENAME		CHAR	1024	0	File name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me the ulternate solution for uploading a large file path ( more that 1024 char)  files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgards,&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 11:11:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713863#M1579375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T11:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: File uploading error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713864#M1579376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try FM  'TMP_GUI_FILE_OPEN_DIALOG' This Function Module alows us to Select a file in Runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: RETURN TYPE I.

call Function 'TMP_GUI_FILE_OPEN_DIALOG'.

EXPORTING
   WINDOW_TITLE = 'FLAT FILE SELECTION'
IMPORTING
    RC                 =    RETURN
    FILE_TABLE  = IT_FNAM.   
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Murthy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 11:27:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713864#M1579376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T11:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: File uploading error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713865#M1579377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no idea in SAP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but in Windows OS you can connect a directory as a net drive in Windows Explorer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using Windows, you can connect a path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;SERVER\Directory_1\...\Directory_n &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to a free single drive char, e.g. "W".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you can access files with W:&lt;STRONG&gt;.&lt;/STRONG&gt; instead of the long term. Maybe it help you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 11:42:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713865#M1579377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T11:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: File uploading error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713866#M1579378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;best method for this would be: copy it to your desktop or a particular drive. then upload it from there.. easy solution &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 11:57:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713866#M1579378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T11:57:27Z</dc:date>
    </item>
    <item>
      <title>Re: File uploading error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713867#M1579379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;store the file on apps server or server that can be reached from SAP and where SAP has open/read permissions, and use OPEN DATASET, READ..., CLOSE....  see ABAP help for these keywords if you're not familiar with reading from a server... you can handle very, very long record lengths with this methodology.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 13:52:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713867#M1579379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T13:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: File uploading error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713868#M1579380</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;Try calling function module 'F4_FILENAME' under ABAP event AT SELECTION-SCREEN OUTPUT ON VALUE REQUEST FOR &amp;lt;p_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try doing where used list on the function module and you should get many examples in the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rupesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Mar 2011 14:12:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-uploading-error/m-p/7713868#M1579380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-02T14:12:30Z</dc:date>
    </item>
  </channel>
</rss>

