<?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 Explorer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991353#M74275</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Bogdan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you see that theró are many methods to take several files!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrej.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jul 2005 06:22:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-14T06:22:15Z</dc:date>
    <item>
      <title>File Explorer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991348#M74270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to implement an application in ABAP like Total Comander,&lt;/P&gt;&lt;P&gt;with it the user can browse local files or file on application server,&lt;/P&gt;&lt;P&gt;donwload/upload files from/to application server.I have no idea how to start to implement the user interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any sugestion, samples,classes,functions, link or  documentation are very wellcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A nice day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 05:58:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991348#M74270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T05:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: File Explorer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991349#M74271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bogdan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;  PARAMETERS: P_FILE LIKE RLGRAP-FILENAME LOWER CASE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WS_FILENAME_GET'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            MASK             = '&lt;STRONG&gt;.&lt;/STRONG&gt;, All files (&lt;STRONG&gt;.&lt;/STRONG&gt;).'&lt;/P&gt;&lt;P&gt;            MODE             = '0'&lt;/P&gt;&lt;P&gt;            TITLE            = 'Get Text File'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            FILENAME         = P_FILE&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            INV_WINSYS       = 1&lt;/P&gt;&lt;P&gt;            NO_BATCH         = 2&lt;/P&gt;&lt;P&gt;            SELECTION_CANCEL = 3&lt;/P&gt;&lt;P&gt;            SELECTION_ERROR  = 4&lt;/P&gt;&lt;P&gt;            OTHERS           = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&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;Jeffrey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 06:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991349#M74271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T06:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: File Explorer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991350#M74272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bogdan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think you will be able to get the File Navigation dialog for files in the Application Server. That is because you would not have the authorization to the files on the App Server directly. You can look at the files in the App Server (those to which you have the access) through the transaction AL11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far as a files on the Presentation Server are concerned, you can use the function modules GUI_UPLOAD and GUI_DOWNLOAD, which are both very well documented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand Mandalika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 06:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991350#M74272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T06:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: File Explorer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991351#M74273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I intend to create such an application in future. But i suppose that basicly you should use Gui controls classes ( e.g. containers, trees ), CL_GUI_FRONTEND_SERVICES and external OS commands for the application server browsing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Svetlin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 06:15:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991351#M74273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T06:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: File Explorer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991352#M74274</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;do you realy want  an application in ABAP like Total Comander???&lt;/P&gt;&lt;P&gt;did you try FUNCTION 'WS_FILENAME_GET' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrej.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 06:19:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991352#M74274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T06:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: File Explorer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991353#M74275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Bogdan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you see that theró are many methods to take several files!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrej.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 06:22:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991353#M74275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T06:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: File Explorer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991354#M74276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bogdan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; create a dynpro with a tree control on the left for filesystem of application server and a tree control on the right with filesystem of the client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-commands for unix: &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL 'SYSTEM' ID 'COMMAND' FIELD COMMAND
                ID 'TAB'     FIELD TABL-*SYS*.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-commands for pc: CL_GUI_FRONTEND_SERVICES  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 06:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991354#M74276</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-07-14T06:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: File Explorer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991355#M74277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;very helpful answers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you all!&lt;/P&gt;&lt;P&gt;You are great&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bogdan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jul 2005 07:00:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/file-explorer/m-p/991355#M74277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-14T07:00:29Z</dc:date>
    </item>
  </channel>
</rss>

