<?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 How to skip system generated error message. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789487#M911554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;                In a selection screen I have one checkbox and a related parameter field.condition is that, when the checkbox is checked the field should be mandatory and when it is unchecked, the field should be optional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i am selectiong the checkbox first time it is working perfectly but without providing any value if I am trying to uncheck the checkbox it is not able to trigger the "At selection-screen output" event due to the system generated error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any1 help me on that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 May 2008 07:05:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-07T07:05:35Z</dc:date>
    <item>
      <title>How to skip system generated error message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789487#M911554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;                In a selection screen I have one checkbox and a related parameter field.condition is that, when the checkbox is checked the field should be mandatory and when it is unchecked, the field should be optional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i am selectiong the checkbox first time it is working perfectly but without providing any value if I am trying to uncheck the checkbox it is not able to trigger the "At selection-screen output" event due to the system generated error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any1 help me on that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 07:05:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789487#M911554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T07:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to skip system generated error message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789488#M911555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this example code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_text(10) TYPE c.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_check TYPE c AS CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  IF p_check EQ 'X'.&lt;/P&gt;&lt;P&gt;    IF p_text IS INITIAL.&lt;/P&gt;&lt;P&gt;      MESSAGE 'Text field is mandatory' TYPE 'E'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;WRITE: / 'OK!'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 08:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789488#M911555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T08:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to skip system generated error message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789489#M911556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you do any kind of changes in the system generated error mesages than you have to do the changes in the configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 08:56:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789489#M911556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T08:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to skip system generated error message.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789490#M911557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot for your ans. &lt;/P&gt;&lt;P&gt;That means I can't use At selection-screen output in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 09:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-skip-system-generated-error-message/m-p/3789490#M911557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T09:04:16Z</dc:date>
    </item>
  </channel>
</rss>

