<?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: issue with checkbox in module pool program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671431#M1447970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your useful comments&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Mar 2010 08:04:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-19T08:04:39Z</dc:date>
    <item>
      <title>issue with checkbox in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671426#M1447965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing a module pool program in which i have a checkbox. Now when i select the checkbox i want a certain field to get disabled. I am achieving this part by loop through the screen in the PBO event. But then when i select the checkbox The PAI executes and performs some validations on other screen field which is a business area field that comes after the checkbox. I don't  want this validation to fire. How do i go about controlling it. It is a mandatrory field validation. Kindly help me with a suitable response. Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 07:36:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671426#M1447965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T07:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: issue with checkbox in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671427#M1447966</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;Dont make that field has manditory. Instead display a message programatically to the user if the data is not entered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise firs the validation will go to the manditory field first and it will block the module pool screen&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;Shanmugavel Chandrasekaran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 07:45:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671427#M1447966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T07:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: issue with checkbox in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671428#M1447967</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 want the mandatory field validation on the field.&lt;/P&gt;&lt;P&gt;don't do it manually.&lt;/P&gt;&lt;P&gt;in the field attribute of the field make it as "&lt;STRONG&gt;required&lt;/STRONG&gt;".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 07:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671428#M1447967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T07:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: issue with checkbox in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671429#M1447968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try this way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the properties of the checkbox (by double click on the check box in layout editor) you can find FctCode . Here you put some 3 letter word as like  CHK &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
if sy-ucomm eq 'CHK'.
 if gv_check_box ne 'X'.  " Blank
     " do your validation here 
endif.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 07:51:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671429#M1447968</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2010-03-11T07:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: issue with checkbox in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671430#M1447969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am doing the validation programatically, but then my cursor does not stop on that particular field instead it goes to the first field in the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 09:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671430#M1447969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-11T09:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: issue with checkbox in module pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671431#M1447970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your useful comments&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Mar 2010 08:04:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-checkbox-in-module-pool-program/m-p/6671431#M1447970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-19T08:04:39Z</dc:date>
    </item>
  </channel>
</rss>

