<?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: regarding the file saving @ user required patha in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857050#M927144</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Buddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use class CL_GUI_FRONTEND_SERVICES and method FILE_SAVE_DIALOG in this class to specify the file name and path. When u use this class, a pop up comes prompting you for file name and path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Kindly check it and get back to me incase of any queries.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dont forget to reward points, if found useful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Satyesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 May 2008 10:14:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-09T10:14:17Z</dc:date>
    <item>
      <title>regarding the file saving @ user required patha</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857047#M927141</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 need F4 help on the file selection. where i can specify the path to save my file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me any FM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 10:06:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857047#M927141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T10:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the file saving @ user required patha</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857048#M927142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  You can use the method &lt;STRONG&gt;file_save_dialog&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; of the class  &lt;STRONG&gt;cl_gui_frontend_services&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;The code will look some thing like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:   l_f_file_name   TYPE string ,
          l_f_path        TYPE string ,
          l_f_full_path   TYPE string ,
          l_f_user_act    TYPE i      .

CALL METHOD cl_gui_frontend_services=&amp;gt;file_save_dialog
      CHANGING
        filename          = l_f_file_name
        path              = l_f_path
        fullpath          = l_f_full_path
        user_action       = l_f_user_act
  EXCEPTIONS
    cntl_error        = 1
    error_no_gui      = 2
    OTHERS            = 3
            .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 10:12:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857048#M927142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T10:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the file saving @ user required patha</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857049#M927143</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;use f4_filename func module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if hlpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 10:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857049#M927143</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-05-09T10:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the file saving @ user required patha</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857050#M927144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Buddy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use class CL_GUI_FRONTEND_SERVICES and method FILE_SAVE_DIALOG in this class to specify the file name and path. When u use this class, a pop up comes prompting you for file name and path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Kindly check it and get back to me incase of any queries.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dont forget to reward points, if found useful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Satyesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 10:14:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-file-saving-user-required-patha/m-p/3857050#M927144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T10:14:17Z</dc:date>
    </item>
  </channel>
</rss>

