<?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: A question about screen control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394154#M1545887</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi Johny,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; You can use the AT SELECTION-SCREEN OUTPUT event. But you should enable the user command for the check box&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;
&amp;gt; PARAMETERS: CB_A AS CHECKBOX USER-COMMAND CBA.
&amp;gt; &lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Then in the AT SELECTION-SCREEN OUTPUT you can change the Radio button as X.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Immanuel.&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's usable. But: if you try to activate radio button 1 , it keeps changing to radio button 2. Not sure if that's what you want though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Oct 2010 09:40:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-25T09:40:02Z</dc:date>
    <item>
      <title>A question about screen control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394151#M1545884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my selection screen. one checkbox CB_A. another two radio button RB_B, RB_C which are in the same group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is :&lt;/P&gt;&lt;P&gt;When CB_A is marked, the RB_C should be selected automatically. What event shall I use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Johnny.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Oct 2010 09:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394151#M1545884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-25T09:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: A question about screen control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394152#M1545885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At selection screen .&lt;/P&gt;&lt;P&gt;Check the value for CB_A and based on this chose the radio button RB_C.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Oct 2010 09:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394152#M1545885</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2010-10-25T09:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: A question about screen control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394153#M1545886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the AT SELECTION-SCREEN event. But you should enable the user command for the check box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS: CB_A AS CHECKBOX USER-COMMAND CBA.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the AT SELECTION-SCREEN you can change the Radio button as X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN.

IF CB_A EQ 'X'.
  RB_C = 'X'.
ELSE.
  RB_C = SPACE.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Immanuel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Oct 2010 09:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394153#M1545886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-25T09:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: A question about screen control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394154#M1545887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi Johny,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; You can use the AT SELECTION-SCREEN OUTPUT event. But you should enable the user command for the check box&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;
&amp;gt; PARAMETERS: CB_A AS CHECKBOX USER-COMMAND CBA.
&amp;gt; &lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Then in the AT SELECTION-SCREEN OUTPUT you can change the Radio button as X.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Immanuel.&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's usable. But: if you try to activate radio button 1 , it keeps changing to radio button 2. Not sure if that's what you want though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Oct 2010 09:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394154#M1545887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-25T09:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: A question about screen control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394155#M1545888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Maen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes. I realized that after pressing the POST button and changed later :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Immanuel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Oct 2010 09:51:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394155#M1545888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-25T09:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: A question about screen control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394156#M1545889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FIrst - check box must trigger PAI, so add a USER-COMMAND 'ZZZ' to the parameter :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: CB_A AS CHECKBOX USER-COMMAND CBA. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then in PAI, set radiobuttion on, if user press the box&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN
  IF sscrfields-ucomm EQ 'ZZZ' AND CB_A = 'X'.
    RB_C = 'X'.
    RB_B = ' '.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Oct 2010 09:54:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/a-question-about-screen-control/m-p/7394156#M1545889</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-10-25T09:54:13Z</dc:date>
    </item>
  </channel>
</rss>

