<?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 report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201338#M1521301</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;Make sure u using HIDE statement along with that.&lt;/P&gt;&lt;P&gt;Remove single quotes to the field in set parameter statement,&lt;/P&gt;&lt;P&gt;USe it as explained in belwo example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ex: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
START-OF-SELECTION. 
  SELECT carrid connid 
         FROM spfli 
         INTO (carrier, connection). 
    WRITE: / carrier HOTSPOT, connection HOTSPOT. 
    HIDE:  carrier, connection. 
  ENDSELECT. 

AT LINE-SELECTION. 
  SET PARAMETER ID: 'CAR' FIELD carrier, 
                    'CON' FIELD connection. 
  CALL TRANSACTION 'DEMO_TRANSACTION'. 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Aug 2010 06:30:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-24T06:30:56Z</dc:date>
    <item>
      <title>interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201334#M1521297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;                my requiement is i am trying to set the value of the customer number on which i place my cursor and when i called that transaction by clicking on the button on the application tool bar which i created through set pf-status, that particular customer number must be displayed in the initial screen of the xd01 transaction.i trried it by using set parameter id 'KUN' field 'KUNNR'.&lt;/P&gt;&lt;P&gt;but it only picking the KUNNR rather then the customer number.any solution for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;pritee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 06:02:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201334#M1521297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T06:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201335#M1521298</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;Don't give quotes to field. i.e.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set parameter id 'KUN' field KUNNR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lokeswari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 06:07:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201335#M1521298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T06:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201336#M1521299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear expert,&lt;/P&gt;&lt;P&gt;                  i tried that too.but its throwing an error saying field KUNNR is unknown.it is neither in one of the specified table nor defined by DATA statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pritee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 06:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201336#M1521299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T06:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201337#M1521300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : lv_field(50) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get cursor field field lv_field.&lt;/P&gt;&lt;P&gt;if lv_field = 'ITAB-KUNNR'.&lt;/P&gt;&lt;P&gt;set parameter id 'kunn' field itab-kunnr.&lt;/P&gt;&lt;P&gt;call transaction 'XD01'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;here itab contains customer data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Lokeswari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 06:27:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201337#M1521300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T06:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201338#M1521301</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;Make sure u using HIDE statement along with that.&lt;/P&gt;&lt;P&gt;Remove single quotes to the field in set parameter statement,&lt;/P&gt;&lt;P&gt;USe it as explained in belwo example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Ex: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
START-OF-SELECTION. 
  SELECT carrid connid 
         FROM spfli 
         INTO (carrier, connection). 
    WRITE: / carrier HOTSPOT, connection HOTSPOT. 
    HIDE:  carrier, connection. 
  ENDSELECT. 

AT LINE-SELECTION. 
  SET PARAMETER ID: 'CAR' FIELD carrier, 
                    'CON' FIELD connection. 
  CALL TRANSACTION 'DEMO_TRANSACTION'. 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 06:30:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201338#M1521301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T06:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201339#M1521302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear madam, &lt;/P&gt;&lt;P&gt;                    when i am using the IF ENDIF.that time it does not showing any result it simply remain in the basic list only.but when i am removing the IF ENDIF part then it is showing the same result as 'KUNNR' instead of cusotmer number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;pritee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 06:45:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201339#M1521302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T06:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201340#M1521303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;set parameter id 'KUN' field w_kunnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here w_kunnr is the field name that contains customer number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit Mohan Gupta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Lalit Mohan Gupta on Aug 24, 2010 2:53 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 09:23:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/7201340#M1521303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T09:23:35Z</dc:date>
    </item>
  </channel>
</rss>

