<?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 module to download using file browser in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858712#M670299</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F4_filename   --&amp;gt;  It will show you a popup for choosing the location where to save the file and will return the path string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GUI_DOWNLOAD  --&amp;gt; It will download the data into the file on your system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Sep 2007 11:25:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-28T11:25:00Z</dc:date>
    <item>
      <title>function module to download using file browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858709#M670296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FUNCTION MODULE TO download the data to a file by choosing the path using file browser.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 11:07:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858709#M670296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T11:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: function module to download using file browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858710#M670297</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;YOu need to use to FM's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st ... cl_gui_frontend_services=&amp;gt;get_filename or FILENAME_GET&lt;/P&gt;&lt;P&gt;2nd .. GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 11:12:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858710#M670297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T11:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: function module to download using file browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858711#M670298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your selection screen use this below logic. Then on the screen a pop up file browser wud appear where you can select the path to download the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: If this solves your problem please reward points and mark this question answered.&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;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SELECT-OPTIONS AND PARAMETERS                                        *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Local File path&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK file_info  WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER : p_file TYPE ibipparms-path .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK file_info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;AT SELECTION-SCREEN EVENTS    - validate user input                  *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Pop up screen to select the local file from PC&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      file_name = p_file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 11:15:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858711#M670298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T11:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: function module to download using file browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858712#M670299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;F4_filename   --&amp;gt;  It will show you a popup for choosing the location where to save the file and will return the path string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GUI_DOWNLOAD  --&amp;gt; It will download the data into the file on your system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 11:25:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858712#M670299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T11:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: function module to download using file browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858713#M670300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;fm name is ---&amp;gt; gui_file_save_dialog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u want i can give u the code also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward point if helpful,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Puneet Mehta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 11:55:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858713#M670300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T11:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: function module to download using file browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858714#M670301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Func mod:- f4_filename just gives the path name You have to use GUI_FILE_SAVE_DIALOG with use F4_FILENAME to get the path&lt;/P&gt;&lt;P&gt;and pass this path to path parameter in GUI_FILE_SAVE_DIALOG &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if helpful,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Puneet Mehta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 12:00:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858714#M670301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-28T12:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: function module to download using file browser</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858715#M670302</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;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.&lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;#145;F4_FILENAME&amp;#146;  "this will give File popup  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if Helpful,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2007 12:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-download-using-file-browser/m-p/2858715#M670302</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-09-28T12:16:19Z</dc:date>
    </item>
  </channel>
</rss>

