<?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 calling browser from abap in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010854#M410402</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;I need to show some html code witch I have in string&lt;/P&gt;&lt;P&gt;in a browser.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know how to call a browser, f.e.&lt;/P&gt;&lt;P&gt;-&amp;gt; call function ''call_browser'&lt;/P&gt;&lt;P&gt;-&amp;gt; call method cl_gui_frontend_services=&amp;gt;execute&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I don't know can I? and how? to pass my html code&lt;/P&gt;&lt;P&gt;to the browser to show the page...???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help if anyone know &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Mar 2007 09:17:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-05T09:17:26Z</dc:date>
    <item>
      <title>calling browser from abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010854#M410402</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;I need to show some html code witch I have in string&lt;/P&gt;&lt;P&gt;in a browser.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know how to call a browser, f.e.&lt;/P&gt;&lt;P&gt;-&amp;gt; call function ''call_browser'&lt;/P&gt;&lt;P&gt;-&amp;gt; call method cl_gui_frontend_services=&amp;gt;execute&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but I don't know can I? and how? to pass my html code&lt;/P&gt;&lt;P&gt;to the browser to show the page...???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help if anyone know &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 09:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010854#M410402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T09:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: calling browser from abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010855#M410403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a URL, you can pass that to  exporting parameter URL&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CALL_BROWSER'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;     URL                          = 'www.yahoo.com'&lt;/P&gt;&lt;P&gt;     WINDOW_NAME                  = ' '&lt;/P&gt;&lt;P&gt;     NEW_WINDOW                   = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    BROWSER_TYPE                 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    CONTEXTSTRING                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     FRONTEND_NOT_SUPPORTED       = 1&lt;/P&gt;&lt;P&gt;     FRONTEND_ERROR               = 2&lt;/P&gt;&lt;P&gt;     PROG_NOT_FOUND               = 3&lt;/P&gt;&lt;P&gt;     NO_BATCH                     = 4&lt;/P&gt;&lt;P&gt;     UNSPECIFIED_ERROR            = 5&lt;/P&gt;&lt;P&gt;     OTHERS                       = 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 09:21:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010855#M410403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T09:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: calling browser from abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010856#M410404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;define one macro like this

  DEFINE add_html.
    YT_HTML = &amp;amp;1.
    APPEND YT_HTML.

  END-OF-DEFINITION.


and you can pass the data to be converted

add_html '&amp;lt;HTML&amp;gt;'.
  add_html '&amp;lt;head&amp;gt;'.
  add_html '&amp;lt;title&amp;gt;'.
  add_html 'ABAP Code'.
  add_html ' View :'.
  add_html GV_PROG_NAME.
  add_html '&amp;lt;/title&amp;gt;'.
  add_html ' '.
  add_html '&amp;lt;meta name="description"'.
  add_html ' content="'.
  add_html P_DESC.
  add_html '"&amp;gt;'.
  add_html '&amp;lt;meta name="keywords"'.
  add_html 'content="' .
  add_html 'www.rmtiwari.com,ABAP Code WebViewer,ABAP Code,'.
  add_html P_KEYW .
  add_html '"&amp;gt;'.

  add_html '&amp;lt;link type="text/css"&amp;gt;'.
  add_html '&amp;lt;/head&amp;gt;'.
  add_html '&amp;lt;BODY&amp;gt;'.
  add_html '&amp;lt;pre&amp;gt;&amp;lt;code&amp;gt;'.


and pass the html filename to  CALL_BROWSER  FM&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 09:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010856#M410404</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T09:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: calling browser from abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010857#M410405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already have my code in a string - and it's no problem to write it &lt;/P&gt;&lt;P&gt;to a file, but I'm not sure if I can pass that file's path to a browser...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I'm doing it - browser is looking for a file on a local machine,&lt;/P&gt;&lt;P&gt;not on a server - and I don't want to download and save that files&lt;/P&gt;&lt;P&gt;on my disc - it should open a file from a server - and I'm not sure if that's possible...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 09:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-browser-from-abap/m-p/2010857#M410405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T09:35:43Z</dc:date>
    </item>
  </channel>
</rss>

