<?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: Enabling screen field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899674#M1144296</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You didnot select correction user exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have a mistake in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a warning or error message occurs in a module that is not linked with a *&lt;STRONG&gt;FIELD or CHAIN&lt;/STRONG&gt;* statement, none of the fields on the screen will be ready for input. In this case, the user can only exit the program, but only if a corresponding unconditional module call is provided.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Dec 2008 03:31:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-16T03:31:48Z</dc:date>
    <item>
      <title>Enabling screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899672#M1144294</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;I am validating value of a field and showing an error message in an user exit. When the error message appears all the screen fiedls are disabling for input. I want to enable the checked field for input. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note the error message code is in vendor master user exit before saving. As of my knowledge we can use loop at screen for a field at PAI of dialogue program. How to handle this in the exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 19:56:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899672#M1144294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T19:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899673#M1144295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From the help on MODIFY SCREEN:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"This statement can be used in the statement block after LOOP AT SCREEN only
and makes sense only during PBO processing."&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Dec 2008 20:02:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899673#M1144295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-15T20:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899674#M1144296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You didnot select correction user exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have a mistake in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a warning or error message occurs in a module that is not linked with a *&lt;STRONG&gt;FIELD or CHAIN&lt;/STRONG&gt;* statement, none of the fields on the screen will be ready for input. In this case, the user can only exit the program, but only if a corresponding unconditional module call is provided.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 03:31:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899674#M1144296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T03:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899675#M1144297</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;what you need to do is write the module for validation along with the keyword field &amp;lt; fieldname&amp;gt; like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field &amp;lt;fieldname &amp;gt;  module validation.&lt;/P&gt;&lt;P&gt; write your code in this module.&lt;/P&gt;&lt;P&gt;if any error comes in this module,the field which is mentioned here will remain open for input and others will be disabled. but if you want other fields also to be open for input when any error message comes the use the varios field name in between chain and endchain like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; chain  &lt;/P&gt;&lt;P&gt;field &amp;lt;field1&amp;gt;&lt;/P&gt;&lt;P&gt;field &amp;lt;field2&amp;gt;&lt;/P&gt;&lt;P&gt;field &amp;lt;field3&amp;gt;&lt;/P&gt;&lt;P&gt;field &amp;lt;field4&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module validation.&lt;/P&gt;&lt;P&gt;endchain.&lt;/P&gt;&lt;P&gt;now if any error comes in this module,the fields which are&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mentioned here will remain open for input and others will be disabled. &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;regards&lt;/P&gt;&lt;P&gt;geeta gupta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 04:45:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899675#M1144297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T04:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899676#M1144298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, &lt;/P&gt;&lt;P&gt;  try this out,&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE user_command_0100.&lt;/P&gt;&lt;P&gt;  FIELD: change_type,&lt;/P&gt;&lt;P&gt;             partner_fct.&lt;/P&gt;&lt;P&gt;  MODULE validate_entries.    "Validate inputs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE validate_entries INPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Validate Partner Function&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF partner_fct IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;(    CHECK FOR VALIDATION )&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        IF screen-name = gv_partner_fct.&lt;/P&gt;&lt;P&gt;          screen-input = 1.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      sy-ucomm = 'OK'.&lt;/P&gt;&lt;P&gt;      MESSAGE (............)&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " VALIDATE_ENTRIES  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 05:38:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899676#M1144298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T05:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899677#M1144299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your requirement can be fulfilled if:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD &amp;lt;FIELD_NAME&amp;gt; MODULE &amp;lt;CHECK_MODULE&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Module &amp;lt;CHECK_MODULE&amp;gt; " you give error message&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to make sure that the User-Exit is being called by the Std Program in above fashion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 05:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899677#M1144299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T05:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899678#M1144300</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;Thanks for the replies. But, I am writing my code in an user exit which executes before saving the transaction. So, I can not be able to modify at PAI level. Can you suggest the alternative please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 10:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899678#M1144300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T10:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Enabling screen field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899679#M1144301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you suggest the alternative please.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a) Find a more suitable exit.&lt;/P&gt;&lt;P&gt;2) do a mod.&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, 16 Dec 2008 14:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enabling-screen-field/m-p/4899679#M1144301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T14:05:22Z</dc:date>
    </item>
  </channel>
</rss>

