<?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 Check Boxes on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082216#M98159</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working on a report and have 3 checkboxes on the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_CKBX1&lt;/P&gt;&lt;P&gt;P_CKBX2&lt;/P&gt;&lt;P&gt;P_CKBX3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF none of them are checked then I must exit and give an error message. Now the user can select one or more checkboxes. Hence the reason for checkboxes instead of radio buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just need an idea on how I can proceed with it.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 10 Dec 2005 16:14:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-10T16:14:22Z</dc:date>
    <item>
      <title>Check Boxes on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082216#M98159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am working on a report and have 3 checkboxes on the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P_CKBX1&lt;/P&gt;&lt;P&gt;P_CKBX2&lt;/P&gt;&lt;P&gt;P_CKBX3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF none of them are checked then I must exit and give an error message. Now the user can select one or more checkboxes. Hence the reason for checkboxes instead of radio buttons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just need an idea on how I can proceed with it.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2005 16:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082216#M98159</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-10T16:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Check Boxes on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082217#M98160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, check this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


report zrich_0001
       no standard page heading.


parameters: p_chk1 as checkbox,
            p_chk2 as checkbox,
            p_chk3 as checkbox.

at selection-screen.

  if p_chk1 is initial
     and p_chk2 is initial
    and p_chk3 is initial.
    message e001(00) with 'Select as least one'.
  endif.

&lt;/CODE&gt;&lt;/PRE&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>Sat, 10 Dec 2005 16:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082217#M98160</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-10T16:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Check Boxes on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082218#M98161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope you have already delecred . In the at selection screen ouput check &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_ckbx1 &amp;lt;&amp;gt; 'X' or p_ckbx2 &amp;lt;&amp;gt; 'X' or p_ckbx3 &amp;lt;&amp;gt; 'X'. &lt;/P&gt;&lt;P&gt;message E(000)....&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Dec 2005 16:18:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082218#M98161</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-10T16:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Check Boxes on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082219#M98162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please remember to award points for helpful answers and close the post when answered completely.  Thanks.&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>Sat, 10 Dec 2005 16:51:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-boxes-on-selection-screen/m-p/1082219#M98162</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-12-10T16:51:10Z</dc:date>
    </item>
  </channel>
</rss>

