<?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: Field value change in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364736#M807424</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 FIELD...MODULE...ON REQUEST statement.Module will triger for single field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHAIN&lt;/P&gt;&lt;P&gt;FIELD...MODULE...ON CHAIN REQUEST&lt;/P&gt;&lt;P&gt;ENDCHAIN&lt;/P&gt;&lt;P&gt;Module will triger for more than one fields value changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another way is keep values into workarea(Backup) in PBO.&lt;/P&gt;&lt;P&gt;compare workarea valus and screen field values in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L.Velu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Feb 2008 07:38:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-05T07:38:31Z</dc:date>
    <item>
      <title>Field value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364734#M807422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I`ve a requirement as to find which field on the screen has been changed and based on that I`ll have to clear off two fields on the screen.&lt;/P&gt;&lt;P&gt;   Is there any way/command to make out as to which field on the screen has been changed.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Regards,&lt;/P&gt;&lt;P&gt;Farhana.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Farhana Sheriff on Feb 4, 2008 9:39 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Feb 2008 20:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364734#M807422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-04T20:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Field value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364735#M807423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Farhana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are working with a custom screen, i.e. developed by you, then you can do the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following command:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; FIELD &amp;lt;screen_field&amp;gt; MODULE &amp;lt;md_module&amp;gt; ON REQUEST. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will trigger whenever the value is changed in screen field &amp;lt;screen_field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put the above code in your &lt;STRONG&gt;PAI&lt;/STRONG&gt; section of flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say you need to clear fields &amp;lt;field1&amp;gt; and &amp;lt;field2&amp;gt; when value in &amp;lt;screen_field&amp;gt; changes, then after having put the above block of code in your flow logic PAI section code the module as so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE &amp;lt;md_module&amp;gt; ON INPUT.
 CLEAR : &amp;lt;field1&amp;gt; , &amp;lt;field2&amp;gt;.
ENDMODULE.
&lt;/CODE&gt;&lt;/PRE&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>Tue, 05 Feb 2008 05:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364735#M807423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-05T05:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Field value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364736#M807424</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 FIELD...MODULE...ON REQUEST statement.Module will triger for single field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHAIN&lt;/P&gt;&lt;P&gt;FIELD...MODULE...ON CHAIN REQUEST&lt;/P&gt;&lt;P&gt;ENDCHAIN&lt;/P&gt;&lt;P&gt;Module will triger for more than one fields value changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another way is keep values into workarea(Backup) in PBO.&lt;/P&gt;&lt;P&gt;compare workarea valus and screen field values in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L.Velu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2008 07:38:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364736#M807424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-05T07:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: Field value change</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364737#M807425</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;  Thanks for your responses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Farhana&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Farhana Sheriff on Feb 5, 2008 9:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2008 20:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-value-change/m-p/3364737#M807425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-05T20:12:37Z</dc:date>
    </item>
  </channel>
</rss>

