<?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 Checkbox event in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-event/m-p/2170712#M460357</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm fairly unknown with ABAP so it'll probably be an easy one.&lt;/P&gt;&lt;P&gt;I have a screen which I eddited with screen painter. I added 1 checkbox and 1 field which is a textfield. So far so good.&lt;/P&gt;&lt;P&gt;The idea is that when the checkbox is false the textfield is not visible. But when you activate it (mark the checkbox) it'll be visible.&lt;/P&gt;&lt;P&gt;So there must be a check when you load the screen and when you edit the screen.&lt;/P&gt;&lt;P&gt;I've tried a lot in the bapi but I didn't succeed yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also read that it'll probably only be possible when a enter is pressed after the editting but that will be fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards,&lt;/P&gt;&lt;P&gt;Wim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Apr 2007 16:27:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-26T16:27:23Z</dc:date>
    <item>
      <title>Checkbox event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-event/m-p/2170712#M460357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm fairly unknown with ABAP so it'll probably be an easy one.&lt;/P&gt;&lt;P&gt;I have a screen which I eddited with screen painter. I added 1 checkbox and 1 field which is a textfield. So far so good.&lt;/P&gt;&lt;P&gt;The idea is that when the checkbox is false the textfield is not visible. But when you activate it (mark the checkbox) it'll be visible.&lt;/P&gt;&lt;P&gt;So there must be a check when you load the screen and when you edit the screen.&lt;/P&gt;&lt;P&gt;I've tried a lot in the bapi but I didn't succeed yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also read that it'll probably only be possible when a enter is pressed after the editting but that will be fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards,&lt;/P&gt;&lt;P&gt;Wim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2007 16:27:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-event/m-p/2170712#M460357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T16:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-event/m-p/2170713#M460358</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;In the attributes of the check box field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THere is a input field "FctCode", give a function code..Ex..'CHECK1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THen activate the code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you don't have to press the enter event..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By pressing the check box itself the PAI and PBO event will be triggered..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to disable an input field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO..&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 SCREEN-NAME = 'INPUT FIELD' AND CHECKBOX = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN..   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&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>Thu, 26 Apr 2007 16:36:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-event/m-p/2170713#M460358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-26T16:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-event/m-p/2170714#M460359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;after a second and thirt try I finally got it right,&lt;/P&gt;&lt;P&gt;this problem is solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Apr 2007 10:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-event/m-p/2170714#M460359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-27T10:10:11Z</dc:date>
    </item>
  </channel>
</rss>

