<?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: Module Pool - Error message on a Modal Dialog screen with input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263120#M1632318</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can do in this way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make your message as 'S' type..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
          MESSAGE S398(00) WITH '&amp;amp;' DISPLAY LIKE 'E'.
          RETURN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Oct 2011 14:28:05 GMT</pubDate>
    <dc:creator>surajarafath</dc:creator>
    <dc:date>2011-10-20T14:28:05Z</dc:date>
    <item>
      <title>Module Pool - Error message on a Modal Dialog screen with input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263117#M1632315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I have a modal dialog screen which is called on F4 help of a input field. This dialog screen has radio buttons on it to select. On selection, we check if the user is authorized to that option. If not, raise and error message with command MESSAGE msgid.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the error message pops-up and when clicked ok on it, the radio buttons on the modal dialog screen gets disabled. I want to have the modal dialog box to be able to accept the new radio button as input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Smita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2011 11:59:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263117#M1632315</guid>
      <dc:creator>smita_sapte</dc:creator>
      <dc:date>2011-10-18T11:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool - Error message on a Modal Dialog screen with input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263118#M1632316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put all of your Radio buttons in the CHAIN ... ENDCHAIN with one module.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 CHAIN. 
    FIELD rb1. 
    FIELD rb2.
    FIELD rb3.
    MODULE check_chain ON CHAIN-REQUEST.   "&amp;lt;&amp;lt; implement logic in check_Chain
  ENDCHAIN. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want, you can even disable the options before displaying the screen. Do all necessary checks in the PBO and based on that disable the options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2011 13:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263118#M1632316</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2011-10-18T13:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool - Error message on a Modal Dialog screen with input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263119#M1632317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it legal to have an error message for a help button?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2011 13:39:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263119#M1632317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-18T13:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: Module Pool - Error message on a Modal Dialog screen with input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263120#M1632318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can do in this way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make your message as 'S' type..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
          MESSAGE S398(00) WITH '&amp;amp;' DISPLAY LIKE 'E'.
          RETURN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2011 14:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-error-message-on-a-modal-dialog-screen-with-input/m-p/8263120#M1632318</guid>
      <dc:creator>surajarafath</dc:creator>
      <dc:date>2011-10-20T14:28:05Z</dc:date>
    </item>
  </channel>
</rss>

