<?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: difference between ON INPUT and ON REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189270#M1200948</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;had your problem solved .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not please  ask me what is your probelm in this .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Feb 2009 06:48:00 GMT</pubDate>
    <dc:creator>kamesh_g</dc:creator>
    <dc:date>2009-02-17T06:48:00Z</dc:date>
    <item>
      <title>difference between ON INPUT and ON REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189264#M1200942</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;in module programming, what is the difference between ON INPUT, ON INPUT * and ON REQUEST which are used for field level validations?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 06:51:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189264#M1200942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T06:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: difference between ON INPUT and ON REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189265#M1200943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer the following link:&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="3633832"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 06:56:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189265#M1200943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T06:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: difference between ON INPUT and ON REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189266#M1200944</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;The two looks alike but yes they are different:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PAI
FIELD A MODULE CHECK_DAT ON INPUT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module 'Check_dat' will be executed onli if the value in the field A is "not" equal to its initial value appropriate to its data type.(eg blanks for char or zero for numeric)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PAI
FIELD A MODULE CHECK_DAT ON REQUEST.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module 'Check_dat' will be executed only if the value has been entered in field A since the screen was displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will be of help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 06:58:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189266#M1200944</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T06:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: difference between ON INPUT and ON REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189267#M1200945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ON INPUTThe ABAP module is called only if the field contains a value other than its initial value. This initial value is determined by the data type of the field: Space for character fields, zero for numeric fields. Even if the user enters the initial value of the screen as the initial value, the module is not called. (ON REQUEST, on the other hand, does trigger the call in this case.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ON REQUEST&lt;/P&gt;&lt;P&gt;The module &amp;lt;mod&amp;gt; is only called if the user has entered something in the field. This includes cases when the user overwrites an existing value with the same value, or explicitly enters the initial value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In general, the ON REQUEST condition is triggered through any form of "manual input".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 06:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189267#M1200945</guid>
      <dc:creator>kamesh_g</dc:creator>
      <dc:date>2009-02-12T06:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: difference between ON INPUT and ON REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189268#M1200946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if I enter something (which is not intial value) then which one will trigger. It satisfies both ON INPUT and ON REQUEST right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what about ON INPUT *   ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 07:02:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189268#M1200946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T07:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: difference between ON INPUT and ON REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189269#M1200947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Visit the below link for all you queries:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbabbd35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/dbabbd35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pooja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 07:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189269#M1200947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T07:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: difference between ON INPUT and ON REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189270#M1200948</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;had your problem solved .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not please  ask me what is your probelm in this .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2009 06:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189270#M1200948</guid>
      <dc:creator>kamesh_g</dc:creator>
      <dc:date>2009-02-17T06:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: difference between ON INPUT and ON REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189271#M1200949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Kamesh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Feb 2009 14:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-on-input-and-on-request/m-p/5189271#M1200949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-17T14:06:57Z</dc:date>
    </item>
  </channel>
</rss>

