<?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 Make field Editable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125201#M446060</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;I have a custom table which has a Vendor as one of the fields. It is not declared as a key field in my table. The problem is, when the user enters a non-carrier partner for this field, my custom message is displayed, but the field becomes uneditable. how can I  make the field editable again so the user can input another value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2007 06:55:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-06T06:55:34Z</dc:date>
    <item>
      <title>Make field Editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125201#M446060</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;I have a custom table which has a Vendor as one of the fields. It is not declared as a key field in my table. The problem is, when the user enters a non-carrier partner for this field, my custom message is displayed, but the field becomes uneditable. how can I  make the field editable again so the user can input another value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 06:55:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125201#M446060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T06:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Make field Editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125202#M446061</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;If you send a warning or error message from a module &amp;lt;mod&amp;gt; that you called using a FIELD statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CHAIN.
  FIELD: &amp;lt;f1&amp;gt;, &amp;lt;f 2&amp;gt;,... 
  MODULE &amp;lt;mod1&amp;gt;. 
  FIELD: &amp;lt;g1&amp;gt;, &amp;lt;g 2&amp;gt;,... 
  MODULE &amp;lt;mod2&amp;gt;. 
...
ENDCHAIN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all of the fields on the screen that belong to the processing chain (all of the fields listed in the field statements) are made ready for input again. Other fields are not ready for input. Whenever the MODULE statement appears within a processing chain, even if there is only one FIELD attached to it, all of the fields in the chain (not only the affected field) are made ready for input again, allowing the user to enter new values. If the fields in the processing chain are only checked once, the PAI processing continues directly after the FIELD statement, and the preceding modules are not called again. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 06:59:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125202#M446061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T06:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Make field Editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125203#M446062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the chain statement for the fields that u want to make editable in the PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Process after input.&lt;/P&gt;&lt;P&gt;CHAIN.&lt;/P&gt;&lt;P&gt;  FIELD: &amp;lt;f1&amp;gt;, &amp;lt;f 2&amp;gt;,... &lt;/P&gt;&lt;P&gt;  MODULE &amp;lt;mod1&amp;gt;. &lt;/P&gt;&lt;P&gt;  FIELD: &amp;lt;g1&amp;gt;, &amp;lt;g 2&amp;gt;,... &lt;/P&gt;&lt;P&gt;  MODULE &amp;lt;mod2&amp;gt;. &lt;/P&gt;&lt;P&gt;ENDCHAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NAveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2007 07:17:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125203#M446062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-06T07:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Make field Editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125204#M446063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;in PAI write the follwing code before MODULE USER_COMMAND_1010.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;field work_area-lifnr module &amp;lt;module name&amp;gt; on request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;plz reward if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 07:08:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125204#M446063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T07:08:00Z</dc:date>
    </item>
    <item>
      <title>Re: Make field Editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125205#M446064</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;to make the field editable you should use the field command in the PAI event of the screen.&lt;/P&gt;&lt;P&gt;the sample below should help you....&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;    FIELD wa_porder-field MODULE validate_field ON CHAIN-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here wa_porder is the name of the field u want in editable mode and validate_field is the module where u can check the condition on voilation of which you want the field to be editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;plz reward pts if helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 07:47:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-field-editable/m-p/2125205#M446064</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2007-04-09T07:47:12Z</dc:date>
    </item>
  </channel>
</rss>

