<?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 Difference between pass by value &amp; pass by value and result in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226585#M478598</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;please, i want to know what is the &amp;lt;b&amp;gt;diference&amp;lt;/b&amp;gt; between:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;pass by value&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;pass by value &amp;amp; result.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 19:19:35 GMT</pubDate>
    <dc:creator>rodrigo_paisante3</dc:creator>
    <dc:date>2007-05-09T19:19:35Z</dc:date>
    <item>
      <title>Difference between pass by value &amp; pass by value and result</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226585#M478598</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;please, i want to know what is the &amp;lt;b&amp;gt;diference&amp;lt;/b&amp;gt; between:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;pass by value&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;pass by value &amp;amp; result.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 19:19:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226585#M478598</guid>
      <dc:creator>rodrigo_paisante3</dc:creator>
      <dc:date>2007-05-09T19:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between pass by value &amp; pass by value and result</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226586#M478599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the demo programs:&lt;/P&gt;&lt;P&gt;demo_mod_tech_example_1&lt;/P&gt;&lt;P&gt;demo_mod_tech_example_2&lt;/P&gt;&lt;P&gt;to find the exact difference.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 19:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226586#M478599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T19:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between pass by value &amp; pass by value and result</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226587#M478600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you pass a parameter using pass by value, the passed value doesn't get affected when you change it inside the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value = 1.&lt;/P&gt;&lt;P&gt;perform test using value.&lt;/P&gt;&lt;P&gt;write:/ value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form test USING value(value) TYPE i.&lt;/P&gt;&lt;P&gt;value = 2.&lt;/P&gt;&lt;P&gt;write:/ value.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output would be&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value = 1.&lt;/P&gt;&lt;P&gt;perform test using value.&lt;/P&gt;&lt;P&gt;write:/ value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form test USING value TYPE i.&lt;/P&gt;&lt;P&gt;value = 2.&lt;/P&gt;&lt;P&gt;write:/ value.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output would be&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 19:29:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226587#M478600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T19:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between pass by value &amp; pass by value and result</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226588#M478601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I mark it answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2007 18:33:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-pass-by-value-pass-by-value-and-result/m-p/2226588#M478601</guid>
      <dc:creator>rodrigo_paisante3</dc:creator>
      <dc:date>2007-07-02T18:33:47Z</dc:date>
    </item>
  </channel>
</rss>

