<?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 using Google Maps API inside Report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-google-maps-api-inside-report/m-p/11076472#M1901569</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 am trying to display map inside report by referring to this document &lt;A href="http://wiki.scn.sap.com/wiki/display/ABAP/Javascript+and+HTML+in+ABAP+report" title="http://wiki.scn.sap.com/wiki/display/ABAP/Javascript+and+HTML+in+ABAP+report"&gt;Javascript and HTML in ABAP report - ABAP Development - SCN Wiki&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In its HTML section i tried static HTML code with success.&lt;/P&gt;&lt;P&gt;but when i try to use code with google API , output comes as blank screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(note : google maps API needs to go online, is it supported in report? )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Jun 2015 07:39:58 GMT</pubDate>
    <dc:creator>saurabh_chikate</dc:creator>
    <dc:date>2015-06-09T07:39:58Z</dc:date>
    <item>
      <title>using Google Maps API inside Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-google-maps-api-inside-report/m-p/11076472#M1901569</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 am trying to display map inside report by referring to this document &lt;A href="http://wiki.scn.sap.com/wiki/display/ABAP/Javascript+and+HTML+in+ABAP+report" title="http://wiki.scn.sap.com/wiki/display/ABAP/Javascript+and+HTML+in+ABAP+report"&gt;Javascript and HTML in ABAP report - ABAP Development - SCN Wiki&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In its HTML section i tried static HTML code with success.&lt;/P&gt;&lt;P&gt;but when i try to use code with google API , output comes as blank screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(note : google maps API needs to go online, is it supported in report? )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 07:39:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-google-maps-api-inside-report/m-p/11076472#M1901569</guid>
      <dc:creator>saurabh_chikate</dc:creator>
      <dc:date>2015-06-09T07:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: using Google Maps API inside Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-google-maps-api-inside-report/m-p/11076473#M1901570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Generate the URL in your program code using street, house no, postcode/Pin/Zip code. Check help like in the browser . It always follows a pattern.&lt;/P&gt;&lt;P&gt;e.g : &lt;A href="https://www.google.co.uk/maps/place/22+Shand+St,+London+SE1+2ES" title="https://www.google.co.uk/maps/place/22+Shand+St,+London+SE1+2ES"&gt;Google Maps&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Then call that URL via CL_ABAP_BROWSER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;CALL METHOD cl_abap_browser=&amp;gt;show_url&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&amp;nbsp; EXPORTING&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; url&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = &amp;lt;URL&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; title&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; size&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = CL_ABAP_BROWSER=&amp;gt;MEDIUM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; modal&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = ABAP_TRUE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; printing&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = ABAP_FALSE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; buttons&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = NAVIGATE_OFF&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; format&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = CL_ABAP_BROWSER=&amp;gt;LANDSCAPE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; position&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = CL_ABAP_BROWSER=&amp;gt;TOPLEFT&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; container&amp;nbsp;&amp;nbsp;&amp;nbsp; =&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN class="L0S31"&gt;**&amp;nbsp;&amp;nbsp;&amp;nbsp; context_menu = ABAP_FALSE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S31"&gt;R&amp;nbsp;&amp;nbsp; .&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 08:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-google-maps-api-inside-report/m-p/11076473#M1901570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-06-09T08:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: using Google Maps API inside Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-google-maps-api-inside-report/m-p/11076474#M1901571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to create a new service in SICF with respect to Google Map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 14pt; font-family: inherit; background: transparent;"&gt;The customized service should be in&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 14pt; font-family: inherit; background: transparent;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 14pt; font-family: inherit; background: transparent;"&gt;&lt;STRONG style="font-style: inherit; font-size: 18.6666660308838px; font-family: inherit; background: transparent;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SICF--&amp;gt;DEFAULT_HOST--&amp;gt;SAP--&amp;gt;BC--&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 14pt; font-family: inherit; background: transparent;"&gt;&lt;STRONG style="font-style: inherit; font-size: 18.6666660308838px; font-family: inherit; background: transparent;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333; background: #ffffff;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 14pt; font-family: inherit; background: transparent;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; It’s HTTP based service.&lt;SPAN style="color: #333333; font-family: Calibri, sans-serif; font-size: 18.6666660308838px;"&gt;Create a customized class and pass in &lt;/SPAN&gt;&lt;STRONG style="font-size: 18.6666660308838px; font-family: Calibri, sans-serif; color: #333333; background: #ffffff;"&gt;Handler List&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-family: Calibri, sans-serif; font-size: 18.6666660308838px;"&gt; Tab. U&lt;SPAN style="color: #333333; font-family: Calibri, sans-serif; font-size: 18.6666660308838px;"&gt;se&lt;/SPAN&gt;&lt;STRONG style="font-size: 18.6666660308838px; font-family: Calibri, sans-serif; color: #333333; background: #ffffff;"&gt; IF_HTTP_EXTENSION&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-family: Calibri, sans-serif; font-size: 18.6666660308838px;"&gt; interface and write the code inside the&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="font-size: 18.6666660308838px; font-family: Calibri, sans-serif; color: #333333; background: #ffffff;"&gt;IF_HTTP_EXTENSION~HANDLE_REQUEST&lt;/STRONG&gt;&lt;SPAN style="color: #333333; font-family: Calibri, sans-serif; font-size: 18.6666660308838px;"&gt; Method.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer below blog, where i have displayed the Google Map and explain the all respective steps which needs to be consider.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="119757" __jive_macro_name="blogpost" class="jive_macro jive_macro_blogpost" data-orig-content="SAP User Tracking System - Part 1" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Praveer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 08:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-google-maps-api-inside-report/m-p/11076474#M1901571</guid>
      <dc:creator>ipravir</dc:creator>
      <dc:date>2015-06-09T08:54:25Z</dc:date>
    </item>
  </channel>
</rss>

