<?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: how to make screen fields editable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212135#M1627432</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 can use pop up window to display error message as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Quote-&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON ABCD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF &amp;lt;condition fails&amp;gt;.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'FC_POPUP_ERR_WARN_MESSAGE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        popup_title        = 'Error'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      IS_ERROR           = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        message_text       = 'Error message description'&lt;/P&gt;&lt;P&gt;        start_column       = 25&lt;/P&gt;&lt;P&gt;        start_row          = 6&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;    STOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;-Unquote-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Quote-&lt;/P&gt;&lt;P&gt;  IF &amp;lt;condition fails&amp;gt;.&lt;/P&gt;&lt;P&gt;    MESSAGE 'abcd' TYPE 'E'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;-Unquote-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly let me know whether this is of any help or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shayeree.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Oct 2011 04:08:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-10-17T04:08:39Z</dc:date>
    <item>
      <title>how to make screen fields editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212133#M1627430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam writing a validation for FD32 transaction in exit, if the validation fails showing error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Porblem is when ever error message comes and after that if i press enter fields are going to mode of non editable ( Display mode), how to make them editable which were already editable ( before error message comes).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam not using module pool program for this, iam writing code in include exit and throwing the message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Oct 2011 10:52:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212133#M1627430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-16T10:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to make screen fields editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212134#M1627431</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;Here Your  Message Type is  'E'  Change It .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2011 03:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212134#M1627431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-17T03:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to make screen fields editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212135#M1627432</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 can use pop up window to display error message as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Quote-&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON ABCD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF &amp;lt;condition fails&amp;gt;.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'FC_POPUP_ERR_WARN_MESSAGE'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        popup_title        = 'Error'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      IS_ERROR           = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        message_text       = 'Error message description'&lt;/P&gt;&lt;P&gt;        start_column       = 25&lt;/P&gt;&lt;P&gt;        start_row          = 6&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;    STOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;-Unquote-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Quote-&lt;/P&gt;&lt;P&gt;  IF &amp;lt;condition fails&amp;gt;.&lt;/P&gt;&lt;P&gt;    MESSAGE 'abcd' TYPE 'E'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;-Unquote-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly let me know whether this is of any help or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shayeree.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2011 04:08:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212135#M1627432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-17T04:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to make screen fields editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212136#M1627433</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;Try to use message type W or S. But make sure you specifically come out of the program since these two messages don't stop the flow of program and continue even after raising message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2011 04:14:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212136#M1627433</guid>
      <dc:creator>raviahuja</dc:creator>
      <dc:date>2011-10-17T04:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to make screen fields editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212137#M1627434</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;include mm_messages_mac.         "useful macros for message handling&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; if &amp;lt;Your Condition  &amp;gt; .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; mmpur_message_forced  'E'  'ME'  '083'  text-001 '' '' ''.&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;TEXT-001 =&amp;gt; is Text element  you can type your message and activate that  text element  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;DeepaK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2011 04:58:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-make-screen-fields-editable/m-p/8212137#M1627434</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2011-10-17T04:58:51Z</dc:date>
    </item>
  </channel>
</rss>

