<?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: Differences between on chain-input &amp; on chain-request in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335862#M799481</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me try and put it into perspective.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Input (When value changes from initial value):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here e.g. you have a screen field which has a character field. Initial value of a character field is space. When you enter the screen for the first time, suppose the field is blank (initial value), then user enters some value ('XYZ') in the field, in such an event, the MODULE ON CHAIN-INPUT would get triggered, since the value has changed from initial value to 'XYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, now say the user changes the value from 'XYZ' to 'AAA'. In this case, the MODULE ON CHAIN-INPUT will NOT get triggered because the original value was not initial i.e. space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, as most applications demand, you would want to trigger the MODULE when there is any changes in the field value. In such instances, you do a MODULE ON CHAIN-REQUEST which is triggered when there is any change in value of screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence, ON REQUEST is a superset of ON INPUT, so to say that ON REQUEST is also triggered when value is changed from initial (as in ON INPUT) however ON  INPUT is not triggrered when value is changed from non-initial, whereas ON REQUEST modules are triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this makes it clearer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Jan 2008 17:44:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-24T17:44:13Z</dc:date>
    <item>
      <title>Differences between on chain-input &amp; on chain-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335861#M799480</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;Cany any one explain the difference between on chain-input &amp;amp; on chain-request ( or on input &amp;amp; on request).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already gone through the SAP document help, it was mentioned...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Input:-&lt;/P&gt;&lt;P&gt;If you use the ON INPUT addition in a MODULE statement after FIELD, the module is called only if the field contents have changed from their initial value.&lt;/P&gt;&lt;P&gt;With in a CHAIN block, you must use the ON CHAIN-INPUT addition. The module is then called if the contents of at least one screen field within the CHAIN block have changed from their initial value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Request:-&lt;/P&gt;&lt;P&gt;If you use the ON REQUEST addition in a MODULE statement after FIELD, the module is called only if the user enters a new value in that field.&lt;/P&gt;&lt;P&gt;Within a CHAIN block, you must use the ON CHAIN-REQUEST addition. The module is then called if the user changes the contents of at least one screen field within the CHAIN block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was not clear what is initial value (of On Input) &amp;amp; new value (of On Request).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kal Chand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 14:47:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335861#M799480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T14:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Differences between on chain-input &amp; on chain-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335862#M799481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me try and put it into perspective.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On Input (When value changes from initial value):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here e.g. you have a screen field which has a character field. Initial value of a character field is space. When you enter the screen for the first time, suppose the field is blank (initial value), then user enters some value ('XYZ') in the field, in such an event, the MODULE ON CHAIN-INPUT would get triggered, since the value has changed from initial value to 'XYZ'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, now say the user changes the value from 'XYZ' to 'AAA'. In this case, the MODULE ON CHAIN-INPUT will NOT get triggered because the original value was not initial i.e. space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, as most applications demand, you would want to trigger the MODULE when there is any changes in the field value. In such instances, you do a MODULE ON CHAIN-REQUEST which is triggered when there is any change in value of screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence, ON REQUEST is a superset of ON INPUT, so to say that ON REQUEST is also triggered when value is changed from initial (as in ON INPUT) however ON  INPUT is not triggrered when value is changed from non-initial, whereas ON REQUEST modules are triggered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this makes it clearer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 17:44:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335862#M799481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T17:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Differences between on chain-input &amp; on chain-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335863#M799482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Question answered...Thanks for reply&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jul 2008 10:55:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335863#M799482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-08T10:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Differences between on chain-input &amp; on chain-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335864#M799483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Oct 2013 06:10:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335864#M799483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-10-08T06:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Differences between on chain-input &amp; on chain-request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335865#M799484</link>
      <description>&lt;P&gt;Thanks Aditya. Well explained.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 06:51:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/differences-between-on-chain-input-on-chain-request/m-p/3335865#M799484</guid>
      <dc:creator>former_member741529</dc:creator>
      <dc:date>2021-04-15T06:51:50Z</dc:date>
    </item>
  </channel>
</rss>

