<?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: HOTSPOT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018861#M960270</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to use hotspot?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

tables mara.
start-of-selection.
select * from mara.
write / mara-matnr hotspot on.
endselect.
at-lineselection.
write 'new list after single-click on a hotspot area'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jun 2008 05:59:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-19T05:59:07Z</dc:date>
    <item>
      <title>HOTSPOT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018858#M960267</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 have made a particular field on the output screen hotspot enabled.Now when i click on this field i need the data to be displayed from an internal table in an interactive list.Please help me in how to do this.Please see my simple code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points Assured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : itab type standard table of ekko,&lt;/P&gt;&lt;P&gt;       itab1 type standard table of mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ekko up to 5 rows into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara up to 5 rows into table itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: Errors type char15 value 'Failed entries',&lt;/P&gt;&lt;P&gt;        Success type char20 value 'Successful entries'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'ERRORS',errors color 6 inverse off hotspot on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*when this hotspot is clicked table itab displayed as an interactive list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'SUCESS',SUCCESS color 5 inverse off hotspot on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*when this hotspot is clicked table itab1 displayed as an interactive list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 05:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018858#M960267</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T05:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: HOTSPOT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018859#M960268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;        Use the event ,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;At Line selection .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get the data which is clicked use read line index or system varaibale sy-lisel .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then display your itab within at line-selection event .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 05:56:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018859#M960268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T05:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: HOTSPOT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018860#M960269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : itab type standard table of ekko,&lt;/P&gt;&lt;P&gt;itab1 type standard table of mara.&lt;/P&gt;&lt;P&gt;data: wa like line of itab.&lt;/P&gt;&lt;P&gt;select * from ekko up to 5 rows into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara up to 5 rows into table itab1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: Errors type char15 value 'Failed entries',&lt;/P&gt;&lt;P&gt;Success type char20 value 'Successful entries'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'ERRORS',errors color 6 inverse off hotspot on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*when this hotspot is clicked table itab displayed as an interactive list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'SUCESS',SUCCESS color 5 inverse off hotspot on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into wa.&lt;/P&gt;&lt;P&gt;  write : wa-ebeln.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward IF.........&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;Anbu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 05:57:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018860#M960269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T05:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: HOTSPOT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018861#M960270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to use hotspot?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

tables mara.
start-of-selection.
select * from mara.
write / mara-matnr hotspot on.
endselect.
at-lineselection.
write 'new list after single-click on a hotspot area'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 05:59:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018861#M960270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T05:59:07Z</dc:date>
    </item>
    <item>
      <title>Re: HOTSPOT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018862#M960271</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;its simple u only need to loop the table in                              AT LINE SELECTION   event &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;/P&gt;&lt;P&gt;Snehi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jun 2008 06:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018862#M960271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-19T06:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: HOTSPOT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018863#M960272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jun 2011 15:37:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hotspot/m-p/4018863#M960272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-02T15:37:19Z</dc:date>
    </item>
  </channel>
</rss>

