<?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 Problem with radiobutton's usage in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607112#M1438221</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 created two rado buttons r1 and r2 with group rg1 in screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i am wrinting logic in se38 i am using the statement : IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then i am getting an error.  -- FIELD 'r1' is unknown. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to proceed . Please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Feb 2010 08:16:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-01T08:16:41Z</dc:date>
    <item>
      <title>Problem with radiobutton's usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607112#M1438221</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 created two rado buttons r1 and r2 with group rg1 in screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i am wrinting logic in se38 i am using the statement : IF R1 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then i am getting an error.  -- FIELD 'r1' is unknown. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to proceed . Please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 08:16:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607112#M1438221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T08:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with radiobutton's usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607113#M1438222</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;Since you are using screen painter for radio button,So u need to declare in Main Prgram.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

data : r1 type c,
          r2 type c.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arbind&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 08:25:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607113#M1438222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T08:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with radiobutton's usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607114#M1438223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i have to define global data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: 
  r1 TYPE flag,
  r2 TYPE flag.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 08:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607114#M1438223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T08:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with radiobutton's usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607115#M1438224</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;You have created the radiobuttons in Screen painter &lt;/P&gt;&lt;P&gt;You must declare them  in the program with the same names&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: R1 TYPE C,&lt;/P&gt;&lt;P&gt;            R2 TYPE C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 08:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607115#M1438224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T08:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with radiobutton's usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607116#M1438225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See when we are using Screen Painter all the elements which you are using in screen -painter must be declared in your Main Program then only system transfer their value into the program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So do the declaration of your elements in the main program,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since it is radio button the return value will be a single character, so declaration must be as follows,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: rad_1 type c,&lt;/P&gt;&lt;P&gt;         rad_2 type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 09:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607116#M1438225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T09:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with radiobutton's usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607117#M1438226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi likrahul ,&lt;/P&gt;&lt;P&gt;First u need to declare the radio buttons ,&lt;/P&gt;&lt;P&gt;if u r not declare in se38 u will the error like unkown&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Surendra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Feb 2010 11:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-radiobutton-s-usage/m-p/6607117#M1438226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-01T11:49:39Z</dc:date>
    </item>
  </channel>
</rss>

