<?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: interactive list in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811420#M657209</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi naresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set parameter id 'BES' field iekpo-ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u explain this statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2007 06:27:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-04T06:27:55Z</dc:date>
    <item>
      <title>interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811415#M657204</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;how r u?&lt;/P&gt;&lt;P&gt;i have made a report which shows the following output&lt;/P&gt;&lt;P&gt;doc no----&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;matirial no&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to show the doc no detail&lt;/P&gt;&lt;P&gt;so i want to try that&lt;/P&gt;&lt;P&gt;when i clik on doc no it shud save only doc no&lt;/P&gt;&lt;P&gt;and when i click on matirial number then it shud save only matrial number&lt;/P&gt;&lt;P&gt;i hav tried read line but it saves the whole line &lt;/P&gt;&lt;P&gt;and also can we know which field of the line has been selected???&lt;/P&gt;&lt;P&gt;plz explain with eamples and step by step&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points wil b rewarded.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:14:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811415#M657204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T06:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811416#M657205</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;in that case use GET CURSOR...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:17:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811416#M657205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T06:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811417#M657206</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;Sure, check this example. This will only allow selection on lines items = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report zrich_0002 no standard page heading.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: iekpo type table of ekpo with header line.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data : cursor_field(30),&lt;/P&gt;&lt;P&gt;       field_value(30) .&lt;/P&gt;&lt;P&gt; &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;  select * into corresponding fields of table iekpo&lt;/P&gt;&lt;P&gt;      from ekpo up to 100 rows.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  loop at iekpo.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    if iekpo-ebelp = '1'.&lt;/P&gt;&lt;P&gt;      format hotspot on.&lt;/P&gt;&lt;P&gt;      write:/ iekpo-ebeln, iekpo-ebelp.&lt;/P&gt;&lt;P&gt;      hide iekpo-ebeln.&lt;/P&gt;&lt;P&gt;      format hotspot off.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      write:/ iekpo-ebeln, iekpo-ebelp.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  endloop.&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;  set parameter id 'BES' field iekpo-ebeln.&lt;/P&gt;&lt;P&gt;  call transaction 'ME23' and skip first screen.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:18:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811417#M657206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T06:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811418#M657207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI BHARAT&lt;/P&gt;&lt;P&gt;can u explaint how to use &lt;/P&gt;&lt;P&gt;get cursor wid an exaxmple?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811418#M657207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T06:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811419#M657208</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;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZPRG6                                                       *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZPRG6                                   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: kna1, vbak, vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_kunnr for kna1-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;      kunnr like kna1-kunnr,&lt;/P&gt;&lt;P&gt;      name like kna1-name1,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of jtab occurs 0,&lt;/P&gt;&lt;P&gt;      vbeln like vbak-vbeln,&lt;/P&gt;&lt;P&gt;      netwr like vbak-netwr,&lt;/P&gt;&lt;P&gt;      end of jtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of ktab occurs 0,&lt;/P&gt;&lt;P&gt;      posnr like vbap-posnr,&lt;/P&gt;&lt;P&gt;      matnr like vbap-matnr,&lt;/P&gt;&lt;P&gt;      end of ktab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_fnam(10), v_fval(10).&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;select kunnr name1 from kna1 into table itab where kunnr in s_kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write:/ itab-kunnr hotspot, itab-name.&lt;/P&gt;&lt;P&gt;hide itab-kunnr.&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;at line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-lsind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 1.&lt;/P&gt;&lt;P&gt;select vbeln netwr from vbak into table jtab where kunnr = itab-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at jtab.&lt;/P&gt;&lt;P&gt;write:/ jtab-vbeln hotspot, jtab-netwr.&lt;/P&gt;&lt;P&gt;hide jtab-vbeln.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select posnr matnr from vbap into table ktab where vbeln = jtab-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at ktab.&lt;/P&gt;&lt;P&gt;write:/ ktab-posnr, ktab-matnr hotspot.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 3.&lt;/P&gt;&lt;P&gt;get cursor field v_fnam value v_fval.&lt;/P&gt;&lt;P&gt;set parameter id 'MAT' field v_fval.&lt;/P&gt;&lt;P&gt;call transaction 'MM02'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;top-of-page.&lt;/P&gt;&lt;P&gt;write:/ 'Custom Deatils Report'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;top-of-page during line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-lsind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 1.&lt;/P&gt;&lt;P&gt;write:/ 'Sales Details Report'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 2.&lt;/P&gt;&lt;P&gt;write:/ 'Item Details Report'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;reward for use ful points&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nagesh.Paruchuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:22:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811419#M657208</guid>
      <dc:creator>paruchuri_nagesh</dc:creator>
      <dc:date>2007-10-04T06:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811420#M657209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi naresh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set parameter id 'BES' field iekpo-ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u explain this statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:27:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811420#M657209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T06:27:55Z</dc:date>
    </item>
    <item>
      <title>Re: interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811421#M657210</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;see this simple interactive example.&lt;/P&gt;&lt;P&gt;data:matnr(18) value 'abcd'.&lt;/P&gt;&lt;P&gt;data:ernam(18) value 'bharat'.&lt;/P&gt;&lt;P&gt;data:fld(30).&lt;/P&gt;&lt;P&gt;data:val1(30).&lt;/P&gt;&lt;P&gt;write:/ matnr,ernam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at LINE-SELECTION.&lt;/P&gt;&lt;P&gt;get cursor field fld.&lt;/P&gt;&lt;P&gt;write:/ 'you have clicked on',fld.&lt;/P&gt;&lt;P&gt;get cursor field fld value val1.&lt;/P&gt;&lt;P&gt;WRITE:/ val1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811421#M657210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T06:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811422#M657211</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;You do like this, declare one variable CURSORFIELD of type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then after statment AT LINE-SELECTION. &lt;/P&gt;&lt;P&gt;write this statment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET CURSOR FIELD CURSORFIELD.&lt;/P&gt;&lt;P&gt;Now check the value of CURORFIELD i.e.&lt;/P&gt;&lt;P&gt;IF CURSORFIELD is 'ITAB-MATNR'(i.e. the name of field for which you want to make INteractive list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and inside this IF and ENDIF you write your all write statments.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;REWARD IF USEFULL&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:41:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811422#M657211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T06:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: interactive list</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811423#M657212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx all&lt;/P&gt;&lt;P&gt;i wil try all this&lt;/P&gt;&lt;P&gt;thanx all for ur kind support&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 06:43:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-list/m-p/2811423#M657212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T06:43:05Z</dc:date>
    </item>
  </channel>
</rss>

