<?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: modifing ERROR message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786199#M1121073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just given status message 'wrong value entered'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and cleared that particular field to reenter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Nov 2008 08:47:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-18T08:47:33Z</dc:date>
    <item>
      <title>modifing ERROR message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786196#M1121070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; In dialog Programming, i have screen fields. if the user enters some thing other than the required in the screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program shows a error message showing that  'screen field entered wrong'. then the whole screen disables and user cannot enter anything. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need a functionality so that if he entered a wrong in screen field . it should give error and here if he press back button . the previously entered screen field should be cleared and enabled so that he can reenter the correct value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 07:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786196#M1121070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T07:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: modifing ERROR message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786197#M1121071</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;You need to use the dialog command CHAIN to enable fields to be editable after issuing an error message. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;chain.
  field: vbak-vkorg,
             vbak-vtweg,
             vbak-spart.
  module validate_salesarea.
endchain.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you issue an error messge in the validate_salesarea module the fields will be represented for input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Darren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786197#M1121071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T08:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: modifing ERROR message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786198#M1121072</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;use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chain.&lt;/P&gt;&lt;P&gt;field input_field.&lt;/P&gt;&lt;P&gt;module validation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endchain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module validation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if value is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message 'screen field entered wrong' type 'W'.&lt;/P&gt;&lt;P&gt;set cursor field input_field.&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;endmodule .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:17:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786198#M1121072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T08:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: modifing ERROR message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786199#M1121073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just given status message 'wrong value entered'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and cleared that particular field to reenter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Nov 2008 08:47:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifing-error-message/m-p/4786199#M1121073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-18T08:47:33Z</dc:date>
    </item>
  </channel>
</rss>

