<?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: file path in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956427#M1336945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For presentation server u can use class  cl_gui_frontend_services=&amp;gt;file_open_dialog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;lakshman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Aug 2009 13:12:03 GMT</pubDate>
    <dc:creator>former_member209217</dc:creator>
    <dc:date>2009-08-13T13:12:03Z</dc:date>
    <item>
      <title>file path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956425#M1336943</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;In my selection screen, i want to get a pop-up with choice "application server" and "presentation server" when i hit F4 for my file path field. &lt;/P&gt;&lt;P&gt;if I select "application server" then in f4 search I should see all application storage path and if I select "presentation server" then the presentation path should appear in the same way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me on this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2009 13:01:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956425#M1336943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-13T13:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: file path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956426#M1336944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How long do you want to wait until &lt;STRONG&gt;all&lt;/STRONG&gt; file path regardless of application or presentation server are read in and displayed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is really not a good idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2009 13:08:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956426#M1336944</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-08-13T13:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: file path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956427#M1336945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For presentation server u can use class  cl_gui_frontend_services=&amp;gt;file_open_dialog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;lakshman.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2009 13:12:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956427#M1336945</guid>
      <dc:creator>former_member209217</dc:creator>
      <dc:date>2009-08-13T13:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: file path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956428#M1336946</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 this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : lt_file     TYPE filetable,
         ls_filename LIKE LINE OF lt_file,
         l_return    TYPE i.

*--&amp;gt; Pop-up for file directory
  CALL METHOD cl_gui_frontend_services=&amp;gt;file_open_dialog
    EXPORTING
      initial_directory = 'C:\'
    CHANGING
      file_table        = lt_file
      rc                = l_return.

  IF l_return EQ 1.
    READ TABLE lt_file INTO ls_filename INDEX 1.
    IF sy-subrc EQ 0.
      pc_infile = ls_filename-filename.
    ENDIF.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Milan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2009 13:14:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956428#M1336946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-13T13:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: file path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956429#M1336947</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;Check this FM to get the path  '/SAPDMC/LSM_F4_SERVER_FILE'. for application server.&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;KSR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Aug 2009 13:20:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-path/m-p/5956429#M1336947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-13T13:20:49Z</dc:date>
    </item>
  </channel>
</rss>

