<?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 to get user defined folder path to save file on local PC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886059#M1141754</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;KD_GET_FILENAME_ON_F4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Dec 2008 14:22:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-15T14:22:07Z</dc:date>
    <item>
      <title>Function to get user defined folder path to save file on local PC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886057#M1141752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need an F/M which can be used to get the specified folder selected by end user in browsing window in a target path ( as Parameter type).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 14:10:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886057#M1141752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T14:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get user defined folder path to save file on local PC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886058#M1141753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      program_name  = syst-cprog&lt;/P&gt;&lt;P&gt;      dynpro_number = syst-dynnr&lt;/P&gt;&lt;P&gt;      field_name    = ' '&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      file_name     = p_file1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 14:18:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886058#M1141753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T14:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get user defined folder path to save file on local PC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886059#M1141754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;KD_GET_FILENAME_ON_F4&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 14:22:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886059#M1141754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T14:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get user defined folder path to save file on local PC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886060#M1141755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there you can use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_OPEN_DIALOG&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog
  EXPORTING
    window_title      = 'Select File'
    default_filename  = ',*.*  ,*.*.'
    initial_directory = 'C:\'
    multiselection    = ' '  "No multiple selection
  CHANGING
    file_table        = it_tabemp
    rc                = gd_subrcemp.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 14:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886060#M1141755</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-12-15T14:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get user defined folder path to save file on local PC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886061#M1141756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually I don't need to give the filename in open folder dialog box. I only want the end user to select own directory path where he/she wants to save the file. I need to download the 'PDF' documents attached to a Specification in SAP EHS. I ll get the document downloaded from BAPI  'BAPI_DOCUMENT_CHECKOUTVIEW2' in system defined path, i.e. in SAP Work-directory. Now, File name is generated dynamically and attached with the 'User Specified Folder Path' internally in report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 15:12:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886061#M1141756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T15:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get user defined folder path to save file on local PC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886062#M1141757</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;U can try to use the method DIRECTORY_BROWSE of class CL_GUI_FRONTEND_SERVICES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 15:18:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886062#M1141757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T15:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Function to get user defined folder path to save file on local PC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886063#M1141758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ohh ok..&lt;/P&gt;&lt;P&gt;We have this option of using FM :&lt;/P&gt;&lt;P&gt;SO_SPLIT_FILE_AND_PATH&lt;/P&gt;&lt;P&gt;Splits the filename and its path i.e. c:\temp\hello.txt would return 'hello.txt' &amp;amp; 'c:\temp\'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 15:26:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-to-get-user-defined-folder-path-to-save-file-on-local-pc/m-p/4886063#M1141758</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-12-15T15:26:30Z</dc:date>
    </item>
  </channel>
</rss>

