<?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 Box in Module Pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137808#M745663</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I placed a Check box and Text Box in a Screen in Moudule pool.&lt;/P&gt;&lt;P&gt;when the user press the Check Box then the Text box should enable otherwise it should disable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i give function for a check box then wheather it will trigger when the user press it or not ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Dec 2007 14:29:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-12T14:29:41Z</dc:date>
    <item>
      <title>Check Box in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137808#M745663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I placed a Check box and Text Box in a Screen in Moudule pool.&lt;/P&gt;&lt;P&gt;when the user press the Check Box then the Text box should enable otherwise it should disable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i give function for a check box then wheather it will trigger when the user press it or not ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can we do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 14:29:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137808#M745663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T14:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Check Box in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137809#M745664</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;Write code in PBO event of the screen where you  have placed text box and chk box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because for every click on the checkbox textbox operation should be performed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you jsut check &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Flow Logic for that screen starts &lt;/P&gt;&lt;P&gt;process after output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_1400 OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Flow Logic for that screen ends &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_1400 OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_chck = 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'CANCEL'. "Text box name&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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 14:42:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137809#M745664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T14:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Check Box in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137810#M745665</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 assign a function code to the checkbox the PAI (and then PBO) will be triggered automatically without to press enter;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you don't assign a function code the user'll have to press enter key after choosing the checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO insert a module like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE MODIFY_SCREEN.
  IF &amp;lt;CHECK BOX &amp;gt; = SPACE.
     LOOP AT SCREEN.
         IF SCREEN-NAME = '&amp;lt;TEXT BOX&amp;gt;'.
            SCREEN-ACTIVE = 0.
            MODIFY SCREEN.
          ENDIF.  
     ENDLOOP.
  ENDIF.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 14:46:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137810#M745665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T14:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Check Box in Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137811#M745666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It is working fine. in the first  screen I am taking input in a text box and validating it and it is right then i am calling the next screen.&lt;/P&gt;&lt;P&gt;In the second contains the check box. If am checking the box it is enableing the text box . but if am uncheck the box it is coming out of the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why it is coming out of the screen ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Dec 2007 15:11:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-in-module-pool/m-p/3137811#M745666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-12T15:11:46Z</dc:date>
    </item>
  </channel>
</rss>

