<?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: How to call Report when clicking pushbutton in module pool program ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935957#M1692775</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think ur best bet is to follow what Sravan said...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Under the fcode 'GO_TO_REPORT_SELNSCREEN' for that button...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case v_ok&lt;/P&gt;&lt;P&gt;when 'GO_TO_REPORT_SELNSCREEN'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; submit zreport via selection-screen &amp;lt;with...values&amp;gt; and return. &lt;/P&gt;&lt;P&gt;*will allow u to go to zreport seln screen and control/pgm flow will finally return to module-pool&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submmit zreport has mulitple extensions for various reasons...&lt;/P&gt;&lt;P&gt;1. You can pass values dynamically to the zreport selectn fields,&lt;/P&gt;&lt;P&gt;2. You can skip the seln screen,&lt;/P&gt;&lt;P&gt;3. You can BOTH skip the selection screen and pass dynamic values to seln screen&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I personally recommend using "submit report" over "call transaction".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tell me if this works for u.&lt;/P&gt;&lt;P&gt;Abraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Sep 2012 05:14:30 GMT</pubDate>
    <dc:creator>m4abrams</dc:creator>
    <dc:date>2012-09-13T05:14:30Z</dc:date>
    <item>
      <title>How to call Report when clicking pushbutton in module pool program ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935953#M1692771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am working with module pool program . in this screen one push button is there , when i am clicking push button in module pool screen then how to call report program selection screen . i am using&amp;nbsp; gtable (my own fileds) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; thank &amp;amp; reg .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; prasad g .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: book antiqua,palatino; color: #ff0000;"&gt;Moderator message : Not enough re-search before posting, discussion locked.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vinod Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2012 18:16:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935953#M1692771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-12T18:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Report when clicking pushbutton in module pool program ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935954#M1692772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can make use of SUBMIT statement (VIA SELECTION SCREEN).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pseudo code:&lt;/P&gt;&lt;P&gt;CASE &lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;&lt;A&gt;&lt;/A&gt;ok_code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHEN &amp;lt;function code of push button&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUBMIT &amp;lt;program&amp;gt; .VIA SELECTION SCREEN.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHEN others.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 03:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935954#M1692772</guid>
      <dc:creator>former_member215575</dc:creator>
      <dc:date>2012-09-13T03:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Report when clicking pushbutton in module pool program ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935955#M1692773</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;check the link which give information on your requiremnt, as per the above thread call submit in your user command. when button is clicked the required report is called. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/thread/747527"&gt;http://scn.sap.com/thread/747527&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 03:49:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935955#M1692773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-13T03:49:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Report when clicking pushbutton in module pool program ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935956#M1692774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasad, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can do one thing. Create a transaction code from SE93 for your report program selection screen. and call it from Module pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case.&lt;/P&gt;&lt;P&gt;When 'GO'.&lt;/P&gt;&lt;P&gt;call transaction 'ZREPORT'.&lt;/P&gt;&lt;P&gt;Endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 04:47:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935956#M1692774</guid>
      <dc:creator>former_member212705</dc:creator>
      <dc:date>2012-09-13T04:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to call Report when clicking pushbutton in module pool program ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935957#M1692775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think ur best bet is to follow what Sravan said...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Under the fcode 'GO_TO_REPORT_SELNSCREEN' for that button...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case v_ok&lt;/P&gt;&lt;P&gt;when 'GO_TO_REPORT_SELNSCREEN'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; submit zreport via selection-screen &amp;lt;with...values&amp;gt; and return. &lt;/P&gt;&lt;P&gt;*will allow u to go to zreport seln screen and control/pgm flow will finally return to module-pool&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submmit zreport has mulitple extensions for various reasons...&lt;/P&gt;&lt;P&gt;1. You can pass values dynamically to the zreport selectn fields,&lt;/P&gt;&lt;P&gt;2. You can skip the seln screen,&lt;/P&gt;&lt;P&gt;3. You can BOTH skip the selection screen and pass dynamic values to seln screen&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I personally recommend using "submit report" over "call transaction".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tell me if this works for u.&lt;/P&gt;&lt;P&gt;Abraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Sep 2012 05:14:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-call-report-when-clicking-pushbutton-in-module-pool-program/m-p/8935957#M1692775</guid>
      <dc:creator>m4abrams</dc:creator>
      <dc:date>2012-09-13T05:14:30Z</dc:date>
    </item>
  </channel>
</rss>

