<?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: Screen lock while populating error message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723124#M1580288</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your enhancement called at save also... If yes then check if you have written EXIT after the message.. If the enhancement is not called at save you need to find another exit that is called at save and write your code there as well &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Mar 2011 04:28:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-16T04:28:56Z</dc:date>
    <item>
      <title>Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723119#M1580283</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;I have put a validation in trip transaction in destination field to check the entered value from table and if that value is not found show error message .itis working fine but it locks the screen and user have to go back and start again and if i put warning msg it allow user to save the data.IS there anything which shows error msg aswell as dont lock the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Mar 2011 12:31:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723119#M1580283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-14T12:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723120#M1580284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must chain the module generating the error message with the on screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax in screen PAI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD &amp;lt;dialog_field_name&amp;gt; MODULE &amp;lt;module_name&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: &amp;lt;module_name&amp;gt; should be the name of the module generating the error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need to keep multiple fields "open" then you raise the error message then use CHAIN ... ENCHAIN as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHAIN.&lt;/P&gt;&lt;P&gt;FIELDS: &amp;lt;dialog_field_name1&amp;gt;, &amp;lt;dialog_field_name2&amp;gt;.&lt;/P&gt;&lt;P&gt;MODULE &amp;lt;module_name&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDCHAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Mar 2011 12:46:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723120#M1580284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-14T12:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723121#M1580285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Aditya for replying but this problem is in standard transaction . i put enhancement in it to check the destination field and if the user enter something it should throw an error message .this is working fine but as error message comes it lock the screen which i dont want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2011 04:50:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723121#M1580285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-15T04:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723122#M1580286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can give a message of type 'I' and after the message exit from the code so that the next steps are not performed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Field1 is initial.&lt;/P&gt;&lt;P&gt;message 'Please enter a valid value for Field1' type 'I'.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;endif. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2011 05:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723122#M1580286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-15T05:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723123#M1580287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Anju but this is not solving the purpose as it is showing information popup but still if user clicks on save button it is allowing him  to save the data though the destination field is wrong.Requirement is not to allow user to save the data until the destination is correct and the same time it should not lock the screen so that he can change is destination field without starting from initial&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 03:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723123#M1580287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T03:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723124#M1580288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is your enhancement called at save also... If yes then check if you have written EXIT after the message.. If the enhancement is not called at save you need to find another exit that is called at save and write your code there as well &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 04:28:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723124#M1580288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T04:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723125#M1580289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try    message 'xxxxx' type 'E' display like 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 04:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723125#M1580289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T04:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723126#M1580290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nothing happened.I suppose this will only change the look n feel of message but the functionality remains same as of error.Still locking the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 10:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723126#M1580290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T10:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723127#M1580291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;Try &lt;/P&gt;&lt;P&gt;Message 'XXXXX' type 'E'.&lt;/P&gt;&lt;P&gt;Leave to Screen &amp;lt;screen number &amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4142038"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2712647"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajashiva.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 10:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723127#M1580291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T10:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Screen lock while populating error message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723128#M1580292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajashiva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have gone through all this but problem is still there&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2011 04:03:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-lock-while-populating-error-message/m-p/7723128#M1580292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-18T04:03:08Z</dc:date>
    </item>
  </channel>
</rss>

