<?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/Method for opening path on frontend in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536856#M1264755</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;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              DOCUMENT  = 'C:\TMP\'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in DOCUMENT set the directory you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2009 10:27:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-24T10:27:10Z</dc:date>
    <item>
      <title>Function Module/Method for opening path on frontend</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536853#M1264752</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 am looking for an function module or a method of a class which can be used for opening (in windows) an explorer-window with a given path.&lt;/P&gt;&lt;P&gt;I don't wanna select any files of directories there, only opening the windows and processing the normal logic of the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give me any hints how to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 09:57:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536853#M1264752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T09:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module/Method for opening path on frontend</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536854#M1264753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample Code:&lt;/P&gt;&lt;P&gt;data : file_table like table of SDOKPATH with header line .&lt;/P&gt;&lt;P&gt;data : dir_table like table of SDOKPATH with header line . &lt;/P&gt;&lt;P&gt;data : file_count type i ,&lt;/P&gt;&lt;P&gt;       dircount   type i . &lt;/P&gt;&lt;P&gt;parameters:p_dir(50) type c.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'TMP_GUI_DIRECTORY_LIST_FILES'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;DIRECTORY = p_dir&lt;/P&gt;&lt;P&gt;FILTER = '*.TXT'&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt; FILE_COUNT = file_count&lt;/P&gt;&lt;P&gt; DIR_COUNT =  dircount&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;FILE_TABLE = file_table&lt;/P&gt;&lt;P&gt;DIR_TABLE = dir_table&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt; CNTL_ERROR = 1&lt;/P&gt;&lt;P&gt; OTHERS = 2. &lt;/P&gt;&lt;P&gt;write:/ 'no of files in the floder is : ', file_count .&lt;/P&gt;&lt;P&gt;skip 32. &lt;/P&gt;&lt;P&gt;loop at file_table .&lt;/P&gt;&lt;P&gt;write:/ file_table-PATHNAME.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 10:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536854#M1264753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T10:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module/Method for opening path on frontend</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536855#M1264754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this function module will bring me the filenames and sub-folders. I want to OPEN a Windows Explorer-window which shows the user what is in a given path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 10:09:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536855#M1264754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T10:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module/Method for opening path on frontend</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536856#M1264755</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;try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              DOCUMENT  = 'C:\TMP\'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in DOCUMENT set the directory you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2009 10:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-method-for-opening-path-on-frontend/m-p/5536856#M1264755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-24T10:27:10Z</dc:date>
    </item>
  </channel>
</rss>

