<?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 set Function Code for Radion Buttons in Screen painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185038#M1000396</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked exactly how you described.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sukhbold&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2008 04:05:40 GMT</pubDate>
    <dc:creator>sukhbold_altanbat</dc:creator>
    <dc:date>2008-07-18T04:05:40Z</dc:date>
    <item>
      <title>How to set Function Code for Radion Buttons in Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185033#M1000391</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 faced problem of grouping 3 radio buttons in screen painter (no graphical editor). How to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have checked similiar threads in SDN, but those are for graphical editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5678408"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://saptechnical.com/Tutorials/ABAP/Checkbox/page1.htm" target="test_blank"&gt;http://saptechnical.com/Tutorials/ABAP/Checkbox/page1.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://saptechnical.com/Tutorials/ABAP/Checkbox/page2.htm" target="test_blank"&gt;http://saptechnical.com/Tutorials/ABAP/Checkbox/page2.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sukhbold&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 09:33:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185033#M1000391</guid>
      <dc:creator>sukhbold_altanbat</dc:creator>
      <dc:date>2008-07-17T09:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to set Function Code for Radion Buttons in Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185034#M1000392</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;U want to create radio button in the selection screen  then u can create like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : c1 AS CHECKBOX USER-COMMAND cd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r1 RADIOBUTTON GROUP rad,&lt;/P&gt;&lt;P&gt;r2 RADIOBUTTON GROUP rad.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;IF c1 = 'X'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-name = 'R1'.&lt;/P&gt;&lt;P&gt;screen-input = '0'.&lt;/P&gt;&lt;P&gt;screen-active = '0'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-name = 'R1'.&lt;/P&gt;&lt;P&gt;screen-input = '1'.&lt;/P&gt;&lt;P&gt;screen-active = '1'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 10:03:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185034#M1000392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T10:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to set Function Code for Radion Buttons in Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185035#M1000393</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;&lt;/P&gt;&lt;P&gt;Select the radio buttons that you want to group then click the mouse right button and choose Define.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter the FCODE for one of the radio buttons in the group, it will appear the same for other radio buttons in the group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this would help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 10:18:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185035#M1000393</guid>
      <dc:creator>former_member787646</dc:creator>
      <dc:date>2008-07-17T10:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to set Function Code for Radion Buttons in Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185036#M1000394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murthy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to select all the radio buttons in numerical editor (not in graphical editor) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sukhbold&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sukhbold Altanbat on Jul 17, 2008 6:49 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 10:24:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185036#M1000394</guid>
      <dc:creator>sukhbold_altanbat</dc:creator>
      <dc:date>2008-07-17T10:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to set Function Code for Radion Buttons in Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185037#M1000395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lucky for you there are some of us dinosaurs around who still like the older editor... once you have defined your radio buttons (usually these are one above the other), you click on the top radio button then click the button on the toolbar marked "Graphical Element" (Ctrl&lt;EM&gt;Shift&lt;/EM&gt;F6)... you'll then see the screen title change to "Screen Painter: Change Radio Buttons" and there will be a button "Define Graphic Group" (Ctrl&lt;EM&gt;Shift&lt;/EM&gt;F8)... click the last radio button in the group, then that button to define the group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 23:52:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185037#M1000395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T23:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to set Function Code for Radion Buttons in Screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185038#M1000396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It worked exactly how you described.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sukhbold&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2008 04:05:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-set-function-code-for-radion-buttons-in-screen-painter/m-p/4185038#M1000396</guid>
      <dc:creator>sukhbold_altanbat</dc:creator>
      <dc:date>2008-07-18T04:05:40Z</dc:date>
    </item>
  </channel>
</rss>

