<?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 radiobutton report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-report/m-p/1368542#M181872</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frnds &lt;/P&gt;&lt;P&gt;my requiremnet is &lt;/P&gt;&lt;P&gt;i have got 2 radion buttons . rd1 and rd2 . if i select rd1 then my first block gets activated for salesorder and if rd2 then my 2nd block gets activated for purchase order . and thereafter i have to print the detailed list for the block selected . has any body got the coding of this report as this is a very common report .&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 May 2006 18:22:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-06T18:22:55Z</dc:date>
    <item>
      <title>radiobutton report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-report/m-p/1368542#M181872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi frnds &lt;/P&gt;&lt;P&gt;my requiremnet is &lt;/P&gt;&lt;P&gt;i have got 2 radion buttons . rd1 and rd2 . if i select rd1 then my first block gets activated for salesorder and if rd2 then my 2nd block gets activated for purchase order . and thereafter i have to print the detailed list for the block selected . has any body got the coding of this report as this is a very common report .&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 May 2006 18:22:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-report/m-p/1368542#M181872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-06T18:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: radiobutton report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-report/m-p/1368543#M181873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am giving you here an example for activating/deactivating 1 of 2 parameters based on radio-button chosen. Replicate this in your code for the parameters you want:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_matnr for mara-matnr modif id MD1 ,&lt;/P&gt;&lt;P&gt;                s_mtart for mara-mtart modif id MD2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: rb_1 radiobutton group grp user-command ucomm default 'X',&lt;/P&gt;&lt;P&gt;            rb_2 radiobutton group grp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; loop at screen.&lt;/P&gt;&lt;P&gt;  case screen-group1.&lt;/P&gt;&lt;P&gt;   when  'MD1'.&lt;/P&gt;&lt;P&gt;      if rb_1 = 'X'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   when  'MD2'.&lt;/P&gt;&lt;P&gt;      if rb_2 = 'X'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;      else.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    modify screen.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   endcase.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 May 2006 18:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-report/m-p/1368543#M181873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-06T18:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: radiobutton report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-report/m-p/1368544#M181874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: rad1 RADIOBUTTON GROUP rad USER-COMMAND radio,&lt;/P&gt;&lt;P&gt;            rad2 RADIOBUTTON GROUP rad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK PART1 WITH FRAME.&lt;/P&gt;&lt;P&gt;  PARAMETERS: NUMBER1 TYPE I modif id ID,&lt;/P&gt;&lt;P&gt;              NUMBER2 TYPE I modif id ID,&lt;/P&gt;&lt;P&gt;              NUMBER3 TYPE I modif id ID.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK PART1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK PART1 WITH FRAME.&lt;/P&gt;&lt;P&gt;  PARAMETERS: NUMBER4 TYPE I modif id ID1,&lt;/P&gt;&lt;P&gt;              NUMBER5 TYPE I modif id ID1,&lt;/P&gt;&lt;P&gt;              NUMBER6 TYPE I modif id ID1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK PART1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;case screen-group1.&lt;/P&gt;&lt;P&gt;when 'ID'.&lt;/P&gt;&lt;P&gt;if rad1 = 'X'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'ID1'.&lt;/P&gt;&lt;P&gt;if rad2 = 'X'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanveer.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Please mark helpful answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 May 2006 19:59:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton-report/m-p/1368544#M181874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-06T19:59:42Z</dc:date>
    </item>
  </channel>
</rss>

