<?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: Re : filepath in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001147#M955998</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this FM&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'GUI_FILE_SAVE_DIALOG'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          window_title      = l_c_title     " Title of dialogue box&lt;/P&gt;&lt;P&gt;          default_extension = l_c_fext   " Extesion&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          filename          = l_filename.   " File name&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Manjari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jun 2008 11:09:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-16T11:09:20Z</dc:date>
    <item>
      <title>Re : filepath</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001144#M955995</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;     how to get filepath(dynamic) in f4 help. This is for &lt;/P&gt;&lt;P&gt;downloading purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 11:06:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001144#M955995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T11:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Re : filepath</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001145#M955996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the below methos.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_guid-&amp;gt;directory_browse&lt;/P&gt;&lt;P&gt;        EXPORTING window_title = 'Test'&lt;/P&gt;&lt;P&gt;        CHANGING selected_folder = wf_path2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD cl_gui_cfw=&amp;gt;flush.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  pa_fpath = wf_path2 .&lt;/P&gt;&lt;P&gt;  wf_path = wf_path2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use the FM...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KD_GET_FILENAME_ON_F4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first one is more prefered.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points...if its useful...&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rudra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 11:09:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001145#M955996</guid>
      <dc:creator>former_member195383</dc:creator>
      <dc:date>2008-06-16T11:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Re : filepath</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001146#M955997</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 can use Function module REPOSITORY_INFO_SYSTEM_F4 to get dynamice f4 help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REPOSITORY_INFO_SYSTEM_F4'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      object_type                     = 'PROG'&lt;/P&gt;&lt;P&gt;      object_name                   = p_name&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;    object_name_selected       = p_name&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     cancel                              = 1&lt;/P&gt;&lt;P&gt;     wrong_type                       = 2&lt;/P&gt;&lt;P&gt;     OTHERS                          = 3&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will solve your problem.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nisrin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 11:09:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001146#M955997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T11:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Re : filepath</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001147#M955998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this FM&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'GUI_FILE_SAVE_DIALOG'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          window_title      = l_c_title     " Title of dialogue box&lt;/P&gt;&lt;P&gt;          default_extension = l_c_fext   " Extesion&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          filename          = l_filename.   " File name&lt;/P&gt;&lt;P&gt;Hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Manjari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 11:09:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001147#M955998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T11:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Re : filepath</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001148#M955999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try this..&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_efile     TYPE rlgrap-filename OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*To use F4 help to find file path( Upload File ).&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&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;    IMPORTING&lt;/P&gt;&lt;P&gt;      file_name     = p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karthik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 11:11:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-filepath/m-p/4001148#M955999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T11:11:01Z</dc:date>
    </item>
  </channel>
</rss>

