<?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/960399#M67221</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 your requirement is to use check boxes in any case then you can assign function codes to the check boxes in the screen to trigger PAI and then subsequently PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use a similar logic as follows in PBO,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name EQ &amp;lt;Checkbox1 name&amp;gt; &lt;/P&gt;&lt;P&gt;    AND &amp;lt;Checkbox2&amp;gt; EQ 'X'.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 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;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Sep 2005 13:35:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-09-22T13:35:30Z</dc:date>
    <item>
      <title>check box.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960393#M67215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi to all,&lt;/P&gt;&lt;P&gt;if i am using two or more check boxs...so if i use one another one must me deactivate..like radio button...&lt;/P&gt;&lt;P&gt;can any one tellme how ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;raju...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2005 13:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960393#M67215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-22T13:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: check box.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960394#M67216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not just use a radiobutton then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2005 13:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960394#M67216</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-09-22T13:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: check box.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960395#M67217</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;use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not chekbox1 is initial&lt;/P&gt;&lt;P&gt;loop at screen&lt;/P&gt;&lt;P&gt;   if screen-name = checkbox2.&lt;/P&gt;&lt;P&gt;      screen-active = 0.&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;or you can go for radio buttion&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2005 13:30:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960395#M67217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-22T13:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: check box.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960396#M67218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the options At Selection Screen events or PAI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2005 13:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960396#M67218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-22T13:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: check box.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960397#M67219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you realy want to use checkboxes,  here  is a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002
       no standard page heading.


parameters: p_check1 as checkbox user-command check,
            p_check2 as checkbox user-command check.

data: cursorfield(20) type c.

at selection-screen.


  get cursor field cursorfield.

  if cursorfield = 'P_CHECK1'.
    p_check2 = space.
  elseif  cursorfield = 'P_CHECK2'.
    p_check1 = space.
  endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2005 13:33:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960397#M67219</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-09-22T13:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: check box.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960398#M67220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have some selection option along with check box...&lt;/P&gt;&lt;P&gt;i have two blocks in selecion screen ..if i made selections from one block ..i want the result from that block only....if i select another block containing a different data than the first block...i'll get only the second block results.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2005 13:34:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960398#M67220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-22T13:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: check box.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960399#M67221</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 your requirement is to use check boxes in any case then you can assign function codes to the check boxes in the screen to trigger PAI and then subsequently PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can use a similar logic as follows in PBO,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name EQ &amp;lt;Checkbox1 name&amp;gt; &lt;/P&gt;&lt;P&gt;    AND &amp;lt;Checkbox2&amp;gt; EQ 'X'.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 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;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Sep 2005 13:35:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960399#M67221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-22T13:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: check box.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960400#M67222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   you can make use of this event&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;  if screen-name = checkbox1.&lt;/P&gt;&lt;P&gt;     if screen-value = 'X'.&lt;/P&gt;&lt;P&gt;        "deactivate the other check box.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not clear pls revert back.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2005 07:23:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box/m-p/960400#M67222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-26T07:23:04Z</dc:date>
    </item>
  </channel>
</rss>

