<?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: Radiobutton in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871656#M366921</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;Create two radio buttons like this.&lt;/P&gt;&lt;P&gt;PARAMETERS: R1 RADIOBUTTON GROUP R1 DEFAULT 'X'&lt;/P&gt;&lt;P&gt;                         R2 RADIOBUTTON GROUP R1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If R1 = 'X'.&lt;/P&gt;&lt;P&gt;DO the same as of ur current report.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;SELECT all the data as per ur requiremnt.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Feb 2007 11:02:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-05T11:02:41Z</dc:date>
    <item>
      <title>Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871653#M366918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guru's,&lt;/P&gt;&lt;P&gt;              I got a requirement to make changes in the existing report. In the current report they want me add two more radio buttons. when the first radio button is selected the data reterival/ output should be same as the current one and when the second radio button is selected the ouput should be given for the values GRN date less than delivery date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Please suggest me how to do this. Below is the already existing code.&lt;/P&gt;&lt;P&gt;Best answers will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 10:57:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871653#M366918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T10:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871654#M366919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well, if you had provided MORE info we could help you better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it´s a customer report, you can just modify the dynpro and add the radio-buttons.&lt;/P&gt;&lt;P&gt;If not (what is probably) you gotta seek for a enhancement point, customer_exit, BADI, or user_exit.&lt;/P&gt;&lt;P&gt;i dont think i have to explain the logic to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 11:01:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871654#M366919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T11:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871655#M366920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alson,&lt;/P&gt;&lt;P&gt;  Assume that itab is the final internal table that is being displayed.&lt;/P&gt;&lt;P&gt;And the radio buttons you add are p_rb1 and p_rb2.&lt;/P&gt;&lt;P&gt;You have chosen p_rb2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_rb2 = 'X'.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;if itab-grndate M &amp;gt;= itab-delivery_date.&lt;/P&gt;&lt;P&gt;delete itab index sy-tabix.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 11:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871655#M366920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T11:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Radiobutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871656#M366921</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;Create two radio buttons like this.&lt;/P&gt;&lt;P&gt;PARAMETERS: R1 RADIOBUTTON GROUP R1 DEFAULT 'X'&lt;/P&gt;&lt;P&gt;                         R2 RADIOBUTTON GROUP R1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If R1 = 'X'.&lt;/P&gt;&lt;P&gt;DO the same as of ur current report.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;SELECT all the data as per ur requiremnt.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 11:02:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radiobutton/m-p/1871656#M366921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T11:02:41Z</dc:date>
    </item>
  </channel>
</rss>

