<?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: Exec. InternetExplorer by ABAP through HTML GUI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146108#M1367746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about just using the EXECUTE method of class CL_GUI_FRONTEND_SERVICES? Don't know if that'd work from the HTML GUI, but it may be worth a shot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I ran this in test mode, I was able to start Internet Explorer with "operation" OPEN, "application" iexplore and in "parameter" I could pass the URL I wanted IE to open.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Sep 2009 00:01:36 GMT</pubDate>
    <dc:creator>Tamas_Hoznek</dc:creator>
    <dc:date>2009-09-09T00:01:36Z</dc:date>
    <item>
      <title>Exec. InternetExplorer by ABAP through HTML GUI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146106#M1367744</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;Now I'm trying to start up Internet Explorer in ABAP through HTML GUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could start IE in ABAP using OLE through Windows GUI, but couldn't do in HTML GUI.&lt;/P&gt;&lt;P&gt;Therefore, I'm now searching for another solution to execute Internet Explorer in ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, I found "IF_WD_WINDOW_MANAGER=&amp;gt;CREATE_EXTERNAL_WINDOW" but don't know how to use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me your idea to start up IE in ABAP through HTML GUI.&lt;/P&gt;&lt;P&gt;Or please tell me how to use the method "IF_WD_WINDOW_MANAGER=&amp;gt;CREATE_EXTERNAL_WINDOW" in ABAP Report program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hozy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 13:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146106#M1367744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T13:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Exec. InternetExplorer by ABAP through HTML GUI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146107#M1367745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm also wondering if I can use "HTMLCNTL_SHOW_URL_IN_BROWSER" in report program and also in HTML GUI.&lt;/P&gt;&lt;P&gt;However, I don't know how to use this function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could start IE, but failed to give URL to the browser, and in HTMLGUI, couldn't even start IE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My sourcecode for this module is below;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;DATA: VL_URL TYPE C&lt;/P&gt;&lt;P&gt;      .&lt;/P&gt;&lt;P&gt;VL_URL = 'http://www.yahoo.com'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HTMLCNTL_CREATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    OWNER_REPID = SY-REPID&lt;/P&gt;&lt;P&gt;    PARENTID = ''&lt;/P&gt;&lt;P&gt;    LINK_REPID = SY-REPID&lt;/P&gt;&lt;P&gt;    DYNNR = SY-DYNNR&lt;/P&gt;&lt;P&gt;    CONTAINER = ''&lt;/P&gt;&lt;P&gt;    SHELLSTYLE = ''&lt;/P&gt;&lt;P&gt;  CHANGING&lt;/P&gt;&lt;P&gt;    HANDLE = VL_CNTL_HANDLE&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    CONTROL_INSTALL_ERROR = 1&lt;/P&gt;&lt;P&gt;    CREATE_ERROR = 2&lt;/P&gt;&lt;P&gt;    OTHERS = 3&lt;/P&gt;&lt;P&gt;    .&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HTMLCNTL_SHOW_URL_IN_BROWSER'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    H_CONTROL = VL_CNTL_HANDLE&lt;/P&gt;&lt;P&gt;    URL = VL_URL&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    CNTL_SYSTEM_ERROR = 1&lt;/P&gt;&lt;P&gt;    CNTL_ERROR = 2&lt;/P&gt;&lt;P&gt;    CONTROL_NOT_INITIALIZED = 3&lt;/P&gt;&lt;P&gt;    CALL_METHOD_ERROR = 4&lt;/P&gt;&lt;P&gt;    OTHERS = 4&lt;/P&gt;&lt;P&gt;    .&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hozy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 23:48:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146107#M1367745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T23:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Exec. InternetExplorer by ABAP through HTML GUI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146108#M1367746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about just using the EXECUTE method of class CL_GUI_FRONTEND_SERVICES? Don't know if that'd work from the HTML GUI, but it may be worth a shot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I ran this in test mode, I was able to start Internet Explorer with "operation" OPEN, "application" iexplore and in "parameter" I could pass the URL I wanted IE to open.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 00:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146108#M1367746</guid>
      <dc:creator>Tamas_Hoznek</dc:creator>
      <dc:date>2009-09-09T00:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: Exec. InternetExplorer by ABAP through HTML GUI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146109#M1367747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hozy,&lt;/P&gt;&lt;P&gt;               Have u checked report RSDEMO_HTML_VIEWER.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sap Fan on Sep 9, 2009 6:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 04:18:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146109#M1367747</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2009-09-09T04:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Exec. InternetExplorer by ABAP through HTML GUI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146110#M1367748</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;Thanks a lot for your suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't directly open IE by using EXECUTE method in HTMLGUI, but I tried the followings and nearly made it.&lt;/P&gt;&lt;P&gt;#1 Create Internal Table containing VBScript codings&lt;/P&gt;&lt;P&gt;#2 Use GUI_DOWNLOAD to tranfer the script to local PC&lt;/P&gt;&lt;P&gt;#3 Use CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE to open IE by executing cscript + vbs&lt;/P&gt;&lt;P&gt;Sample sourcecode is as follows;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;GUI_DOWNLOAD&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME = 'C:\script\testscript.vbs'&lt;/P&gt;&lt;P&gt;  IMPORTING&lt;/P&gt;&lt;P&gt;    FILELENGTH = VL_FILELENGTH&lt;/P&gt;&lt;P&gt;  CHANGING&lt;/P&gt;&lt;P&gt;    DATA_TAB = TL_DATA_TAB   "VBScript&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;    APPLICATION = 'CSCRIPT.EXE'&lt;/P&gt;&lt;P&gt;    PARAMETER  = 'C:\script\testscript.vbs http://www.yahoo.com'   "Set URL as 2nd parameter&lt;/P&gt;&lt;P&gt;    OPERATION = 'OPEN'&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you execute this in WindowsGUI, you can open YAHOO.&lt;/P&gt;&lt;P&gt;But when in HTMLGUI, you cannot.&lt;/P&gt;&lt;P&gt;You can download VBScript, but fail to EXECUTE cscript command.&lt;/P&gt;&lt;P&gt;The JAVA error message "cannot execute the program" comes up and cannot open IE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you please give me any advice on how to use CL_GUI_FRONTEND_SERVICES=&amp;gt;EXECUTE ?&lt;/P&gt;&lt;P&gt;And if you have any suggestion on JAVA Error, please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hozy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2009 05:27:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exec-internetexplorer-by-abap-through-html-gui/m-p/6146110#M1367748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-09T05:27:16Z</dc:date>
    </item>
  </channel>
</rss>

