<?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: Check BOx in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031851#M417097</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ravi and Naren.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Mar 2007 16:22:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-27T16:22:39Z</dc:date>
    <item>
      <title>Check BOx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031844#M417090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have 2 check Box on screen. When User checks one the other should grayout. User should have the option of checking only one. I cant use radio buttons because the user can uncheck both the boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions.&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2007 15:48:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031844#M417090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T15:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031845#M417091</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;Check this example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_C1 AS CHECKBOX USER-COMMAND USR1.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_C2 AS CHECKBOX USER-COMMAND USR2.&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;&lt;/P&gt;&lt;P&gt;IF P_C1 = 'X' AND SCREEN-NAME = 'P_C2'.&lt;/P&gt;&lt;P&gt;  SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF P_C2 = 'X' AND SCREEN-NAME = 'P_C1'.&lt;/P&gt;&lt;P&gt;  SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&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;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2007 15:51:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031845#M417091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T15:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031846#M417092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naren.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried it, When the user checks the box to take the action the user have to hit enter. I tried to check both the boxes it accepted and then hit enter. It grays out both the boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways will try out. Thanks,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2007 16:02:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031846#M417092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T16:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031847#M417093</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;If you give USER-COMMAND addition..Then you don't have to hit enter..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2007 16:04:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031847#M417093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T16:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031848#M417094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a intreactive ALV report so I am already using the user command in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I use it again and how.&lt;/P&gt;&lt;P&gt;How would I call this user command, I mean how would I pass it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2007 16:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031848#M417094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T16:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031849#M417095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhu,&lt;/P&gt;&lt;P&gt; I think you have got confused.&lt;/P&gt;&lt;P&gt;the user -command event you are talking about is at the basic list level.&lt;/P&gt;&lt;P&gt;The user-command that Narendra is talking about,  in the selection screen level is different. The event that gets triggered when the check box is triggered is at selection-screen.&lt;/P&gt;&lt;P&gt;So, whatever code you want to write, should be written in at selection-screen event, which gets triggered on selection/deselection of the checkbox&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>Tue, 27 Mar 2007 16:15:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031849#M417095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T16:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031850#M417096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  The user-command I am mentioning is for the check box...If you see in my example..The parameters declaration has an addition USER-COMMAND USR1..Which means..When the check box is pressed..The event AT SELECTION-SCREEN event will be triggered and then the AT SELECTION-SCREEN OUTPUT...This is used to avoid hitting enter ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I am clear ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2007 16:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031850#M417096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T16:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOx</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031851#M417097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ravi and Naren.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2007 16:22:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/2031851#M417097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-27T16:22:39Z</dc:date>
    </item>
  </channel>
</rss>

