<?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: push button in output in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306639#M504695</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 your case just run your report and then goto&amp;lt;b&amp;gt; system&amp;lt;/b&amp;gt; form system to &amp;lt;b&amp;gt;status&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;double clik on screen number&amp;lt;/b&amp;gt; it will leads you to &amp;lt;b&amp;gt;SE80&amp;lt;/b&amp;gt; select the &amp;lt;b&amp;gt;layout&amp;lt;/b&amp;gt; of the screen and add a puch button on it.... this will clear your first problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for  you second problem i think &amp;lt;b&amp;gt;SY-TABIX&amp;lt;/b&amp;gt; will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this information will solve your problem, and don't forget to reward points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 May 2007 10:28:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-17T10:28:48Z</dc:date>
    <item>
      <title>push button in output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306636#M504692</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;&lt;/P&gt;&lt;P&gt;    1, can any one help me in finding push button in output after executing the report.&lt;/P&gt;&lt;P&gt;    2,which system variable used for finding index when any data retrived with out where condition . If table is not having any primary index or key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mahendra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 10:02:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306636#M504692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T10:02:38Z</dc:date>
    </item>
    <item>
      <title>Re: push button in output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306637#M504693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi mahendra &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For radio button Create a screen in SE51 and call that screen in your report and declare that in PAI so that it will be displayed in ur output &lt;/P&gt;&lt;P&gt;for the second question i'm not getting what is ur requirement is so can u ask question clearly plz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 10:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306637#M504693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T10:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: push button in output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306638#M504694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   check out this example code for push button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ok_code TYPE sy-ucomm,&lt;/P&gt;&lt;P&gt;      save_ok LIKE ok_code,&lt;/P&gt;&lt;P&gt;      output(8) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;  save_ok = ok_code.&lt;/P&gt;&lt;P&gt;  CLEAR ok_code.&lt;/P&gt;&lt;P&gt;  CASE save_ok.&lt;/P&gt;&lt;P&gt;    WHEN 'BUTTON_EXIT'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;    WHEN 'BUTTON_1'.&lt;/P&gt;&lt;P&gt;      output = 'Button 1'(001).&lt;/P&gt;&lt;P&gt;    WHEN 'BUTTON_2'.&lt;/P&gt;&lt;P&gt;      output = 'Button 2'(002).&lt;/P&gt;&lt;P&gt;    WHEN 'BUTTON_3'.&lt;/P&gt;&lt;P&gt;      output = 'Button 3'(003).&lt;/P&gt;&lt;P&gt;    WHEN 'BUTTON_4'.&lt;/P&gt;&lt;P&gt;      output = 'Button 4'(004).&lt;/P&gt;&lt;P&gt;    WHEN OTHERS.&lt;/P&gt;&lt;P&gt;      output = save_ok.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 10:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306638#M504694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T10:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: push button in output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306639#M504695</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 your case just run your report and then goto&amp;lt;b&amp;gt; system&amp;lt;/b&amp;gt; form system to &amp;lt;b&amp;gt;status&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;double clik on screen number&amp;lt;/b&amp;gt; it will leads you to &amp;lt;b&amp;gt;SE80&amp;lt;/b&amp;gt; select the &amp;lt;b&amp;gt;layout&amp;lt;/b&amp;gt; of the screen and add a puch button on it.... this will clear your first problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for  you second problem i think &amp;lt;b&amp;gt;SY-TABIX&amp;lt;/b&amp;gt; will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this information will solve your problem, and don't forget to reward points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 May 2007 10:28:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-output/m-p/2306639#M504695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-17T10:28:48Z</dc:date>
    </item>
  </channel>
</rss>

