<?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/1142567#M115089</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI rich,&lt;/P&gt;&lt;P&gt; Thank you very much man u'r answers are of great help to me to undertand and learn ABAP with ease. I am developing interest in the subject.&lt;/P&gt;&lt;P&gt;Thanks for everythinig. Also I promise to give points with out failure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jan 2006 03:55:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-10T03:55:19Z</dc:date>
    <item>
      <title>Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142561#M115083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a menu on the output list  of my interactive report. i know  that we do this using screen painter anyone please drop u'r inputs with detailed description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2006 02:20:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142561#M115083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-09T02:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142562#M115084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean like a regular menu at the very top of the gui?  If so, before writing your list, set the status. In the status, you can define your menu.  Put the following line of code in  your program before you write the list,  double click on the word LIST, system will ask you if you want to create, say yes,  from there you can define your menu.  If you need help with that, reply back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SET PF-STATUS 'LIST'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2006 02:24:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142562#M115084</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-09T02:24: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/1142563#M115085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for u'r help man but till this i know just let me know what to do next.PLease I hope u would help me.&lt;/P&gt;&lt;P&gt;Thanks...&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;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2006 02:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142563#M115085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-09T02:27: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/1142564#M115086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, when you create your gui status, there is a section call "Menu Bar", there is an expand button next to it. click it.  Now there are some input fields there, enter your first menu there, lets call it "MAIN". Now Double click the word MAIN, you will see a few more input fields underneath, then the following..  Activate the status and program.  Run it, you will see the menu at the top of the gui after executing the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FCODE      TEXT
Action1    Action 1 Text
Action2    Action 2 Text&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code for the sample program that I'm working with.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.



parameters: p_val type i.

start-of-selection.

  set pf-status 'LIST'.

  do 10 times.
    p_val = p_val * sy-index.
    write:/ p_val.
  enddo.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, when defining your gui, since you are overriding the standard, you will need to enter the standard FCODEs for green back arrow, enter BACK for this.  This will allow you to exit the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2006 02:38:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142564#M115086</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-09T02:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142565#M115087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once you have that done, you will need to handle the FCODEs.  You will need to handle in the AT USER-COMMAND event.  See the sample program below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.



parameters: p_val type i.

start-of-selection.

  set pf-status 'LIST'.

  do 10 times.
    p_val = p_val * sy-index.
    write:/ p_val.
  enddo.


at user-command.

  case sy-ucomm.
    when 'ACTION1'.
* do something.
    when 'ACTION2'.
* do something else.

  endcase.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2006 02:55:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142565#M115087</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-09T02:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142566#M115088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please remember to award points and close this post if your question has been answered.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jan 2006 19:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142566#M115088</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-09T19:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142567#M115089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI rich,&lt;/P&gt;&lt;P&gt; Thank you very much man u'r answers are of great help to me to undertand and learn ABAP with ease. I am developing interest in the subject.&lt;/P&gt;&lt;P&gt;Thanks for everythinig. Also I promise to give points with out failure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 03:55:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report/m-p/1142567#M115089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T03:55:19Z</dc:date>
    </item>
  </channel>
</rss>

