<?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: Module Pool with select options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469232#M1849142</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hariharan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would recommend you to use primarily use push button and then after &lt;STRONG&gt;SUBMIT&lt;/STRONG&gt; statement, and also the example for the same is provided below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;*Code used to execute a report&lt;BR /&gt;SUBMIT Zreport.&lt;BR /&gt;&lt;BR /&gt;*Code used to populate 'select-options' &amp;amp; execute report&lt;BR /&gt;DATA: seltab type table of rsparams,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; seltab_wa like line of seltab.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; seltab_wa-selname = 'PNPPERNR'.&lt;BR /&gt;&amp;nbsp; seltab_wa-sign&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'I'.&lt;BR /&gt;&amp;nbsp; seltab_wa-option&amp;nbsp; = 'EQ'.&lt;/P&gt;
&lt;P&gt;* load each personnel number accessed from the structure into&lt;BR /&gt;* parameters to be used in the report&lt;BR /&gt;&amp;nbsp; loop at pnppernr.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; seltab_wa-low = pnppernr-low.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; append seltab_wa to seltab.&lt;BR /&gt;&amp;nbsp; endloop.&lt;BR /&gt;&amp;nbsp; SUBMIT zreport with selection-table seltab&lt;BR /&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;&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; via selection-screen.&lt;BR /&gt;&lt;BR /&gt;*Code used to populate 'parameters' &amp;amp; execute report&lt;BR /&gt; SUBMIT zreport with p_param1 = 'value'&lt;BR /&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; with p_param2 = 'value'.&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please validate the same at your end as well, please come back, if inputs are required.&lt;/P&gt;&lt;P&gt;BR/Thanks&lt;/P&gt;&lt;P&gt;Pranav Agrawal&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial monospaced for SAP;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jun 2014 08:05:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-06-25T08:05:37Z</dc:date>
    <item>
      <title>Module Pool with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469230#M1849140</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;I have created select-option and radio button in Module pool. My req is that I when the user enters any value and click on the radio button the respective programs should be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Hari &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 07:51:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469230#M1849140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-25T07:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469231#M1849141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are following the wrong procedure, what is the need of radiobutton here?? use Pushbutton.&lt;/P&gt;&lt;P&gt;If you use one radio button, by default it come as checked, use radiobutton when you multiple options to select.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 08:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469231#M1849141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-25T08:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469232#M1849142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hariharan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would recommend you to use primarily use push button and then after &lt;STRONG&gt;SUBMIT&lt;/STRONG&gt; statement, and also the example for the same is provided below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;*Code used to execute a report&lt;BR /&gt;SUBMIT Zreport.&lt;BR /&gt;&lt;BR /&gt;*Code used to populate 'select-options' &amp;amp; execute report&lt;BR /&gt;DATA: seltab type table of rsparams,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; seltab_wa like line of seltab.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; seltab_wa-selname = 'PNPPERNR'.&lt;BR /&gt;&amp;nbsp; seltab_wa-sign&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'I'.&lt;BR /&gt;&amp;nbsp; seltab_wa-option&amp;nbsp; = 'EQ'.&lt;/P&gt;
&lt;P&gt;* load each personnel number accessed from the structure into&lt;BR /&gt;* parameters to be used in the report&lt;BR /&gt;&amp;nbsp; loop at pnppernr.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; seltab_wa-low = pnppernr-low.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; append seltab_wa to seltab.&lt;BR /&gt;&amp;nbsp; endloop.&lt;BR /&gt;&amp;nbsp; SUBMIT zreport with selection-table seltab&lt;BR /&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;&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; via selection-screen.&lt;BR /&gt;&lt;BR /&gt;*Code used to populate 'parameters' &amp;amp; execute report&lt;BR /&gt; SUBMIT zreport with p_param1 = 'value'&lt;BR /&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; with p_param2 = 'value'.&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please validate the same at your end as well, please come back, if inputs are required.&lt;/P&gt;&lt;P&gt;BR/Thanks&lt;/P&gt;&lt;P&gt;Pranav Agrawal&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial monospaced for SAP;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 08:05:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469232#M1849142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-06-25T08:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469233#M1849143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hariharan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can have Function Code for radio button group, pls refer the pic,&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/483620" /&gt;&lt;/P&gt;&lt;P&gt;Now when you click on any radio button the control will come to PAI, from there you can find the selected&lt;/P&gt;&lt;P&gt;radio button (by checking if rad1 = 'X'.&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call transaction 'TCode1'.&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else.&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call transaction 'TCode2'.&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; endif.) and value entered in select option.&lt;/P&gt;&lt;P&gt;Use call transaction or submit to call respective program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sreekanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 08:16:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469233#M1849143</guid>
      <dc:creator>former_member202818</dc:creator>
      <dc:date>2014-06-25T08:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469234#M1849144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You created select-option in Module pool, that means you are using selection screen as sub screen on main screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and your requirement is that&amp;nbsp; when the user enters any value and click on the radio button the respective programs should be executed!&lt;/P&gt;&lt;P&gt; - &lt;EM&gt;add selection screen event for radio button and apply your code under&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 13:02:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-with-select-options/m-p/10469234#M1849144</guid>
      <dc:creator>gireesh_kokate</dc:creator>
      <dc:date>2014-06-25T13:02:35Z</dc:date>
    </item>
  </channel>
</rss>

