<?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: Please go through the code, is it pass by value? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980154#M950623</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 am new to abap programming&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we say changes made to formal/actual parameter does not affect to formal/actual parameter, what exactly meant by "changes" ?&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;Shiva Sahu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Apr 2014 10:15:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-04-24T10:15:57Z</dc:date>
    <item>
      <title>Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980147#M950616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one explain me the diff between call by value and call by reference in Subroutines. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex : &lt;/P&gt;&lt;P&gt;PERFORM ADD_Z1CLASS1 USING LW_MARA-MATNR&lt;/P&gt;&lt;P&gt;                         CHANGING IDOC_DATA[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM ADD_Z1CLASS1 USING    PV_MATNR TYPE MATNR&lt;/P&gt;&lt;P&gt;                 CHANGING PT_EDIDD TYPE EDIDD_TT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know, if the above code is call by value or call by reference...? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions will be appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 09:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980147#M950616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T09:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980148#M950617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think its call by referenc ebecause u r trying to change the value at the same memory location ..by specifying CHANGING....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call By Value:&lt;/P&gt;&lt;P&gt;Creates a new memory loaction for use within the &lt;/P&gt;&lt;P&gt;subroutine.The memory is freed once it leaves the &lt;/P&gt;&lt;P&gt;subroutine.Changes made to the variable are not affected &lt;/P&gt;&lt;P&gt;outside the subroutine.&lt;/P&gt;&lt;P&gt;Call By Reference:&lt;/P&gt;&lt;P&gt;Passes a pointer to the memory location.Changes made to the &lt;/P&gt;&lt;P&gt;variable within the subroutine affects the variable outside &lt;/P&gt;&lt;P&gt;the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;chandu reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 09:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980148#M950617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T09:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980149#M950618</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;using             --  Pass by reference &lt;/P&gt;&lt;P&gt;changing        --  Pass by reference &lt;/P&gt;&lt;P&gt;using value()   --  Pass by value &lt;/P&gt;&lt;P&gt;changing value( )--  Pass by value and result &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The main difference between the pass by value and pass by reference is that " In pass by value the actual parameters are not changed while in pass by reference those are changed".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By reference Passes a pointer to the original memory location.  Very efficient &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By value Allocates a new memory location for use within the subroutine. The memory is freed when the subroutine ends.  Prevents changes to passed variable &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By value and result Similar to pass by value, but the contents of the new memory is copied back into the original memory before returning.  Allows changes and allows a rollback .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the following eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass by ref:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data f1 value 'A'.&lt;/P&gt;&lt;P&gt; perform s1 using f1.&lt;/P&gt;&lt;P&gt; write / f1.&lt;/P&gt;&lt;P&gt; form s1 using p1.&lt;/P&gt;&lt;P&gt;     p1 = 'X'.&lt;/P&gt;&lt;P&gt;     endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;o/p is X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using and changing Are Identical in Function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  report ztx1805.&lt;/P&gt;&lt;P&gt;  data: f1 value 'A',&lt;/P&gt;&lt;P&gt;        f2 value 'B'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  write: / f1, f2.&lt;/P&gt;&lt;P&gt;  perform s1 using f1&lt;/P&gt;&lt;P&gt;             changing f2.&lt;/P&gt;&lt;P&gt;  write: / f1, f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; form s1 using p1&lt;/P&gt;&lt;P&gt;         changing p2.&lt;/P&gt;&lt;P&gt;     p1 = p2 = 'X'.&lt;/P&gt;&lt;P&gt;     endform.&lt;/P&gt;&lt;P&gt;o/p : A B&lt;/P&gt;&lt;P&gt;       X X&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass by value:&lt;/P&gt;&lt;P&gt;data: f1 value 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform s1 using f1.&lt;/P&gt;&lt;P&gt;  write / f1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  form s1 using value(p1).&lt;/P&gt;&lt;P&gt;      p1 = 'X'.&lt;/P&gt;&lt;P&gt;      write / p1.&lt;/P&gt;&lt;P&gt;     endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;o/p is X&lt;/P&gt;&lt;P&gt;        A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the code which you have pasted comes under pass by reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;Thanks and regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 09:57:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980149#M950618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T09:57:55Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980150#M950619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pass by reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;examples&lt;/P&gt;&lt;P&gt;pass by reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: num1 TYPE i,&lt;/P&gt;&lt;P&gt;      num2 TYPE i,&lt;/P&gt;&lt;P&gt;      sum  TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;num1 = 2. num2 = 4.&lt;/P&gt;&lt;P&gt;PERFORM addit USING num1 num2 CHANGING sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;num1 = 7. num2 = 11.&lt;/P&gt;&lt;P&gt;PERFORM addit USING num1 num2 CHANGING sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM addit&lt;/P&gt;&lt;P&gt;       USING add_num1   TYPE any&lt;/P&gt;&lt;P&gt;             add_num2   TYPE any&lt;/P&gt;&lt;P&gt;       CHANGING add_sum TYPE any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  add_sum = add_num1 + add_num2.&lt;/P&gt;&lt;P&gt;  PERFORM out USING add_num1 add_num2 add_sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM out&lt;/P&gt;&lt;P&gt;       USING out_num1 TYPE any&lt;/P&gt;&lt;P&gt;             out_num2 TYPE any&lt;/P&gt;&lt;P&gt;             out_sum  TYPE any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE: / 'Sum of', out_num1, 'and', out_num2, 'is', out_sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the changes made in form will be reflected immediatly to the memory location,because actual parameters(parameters with perform statement) and formal parameters(parameters with FORM) are pointing to same memory location&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass by value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: num  TYPE i VALUE 5,&lt;/P&gt;&lt;P&gt;      fac  TYPE i VALUE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM fact USING num CHANGING fac.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / 'Factorial of', num, 'is', fac.          "#EC NOTEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM fact&lt;/P&gt;&lt;P&gt;       USING value(f_num) TYPE i&lt;/P&gt;&lt;P&gt;       CHANGING f_fact    TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  f_fact = 1.&lt;/P&gt;&lt;P&gt;  WHILE f_num GE 1.&lt;/P&gt;&lt;P&gt;    f_fact = f_fact * f_num.&lt;/P&gt;&lt;P&gt;    f_num = f_num - 1.&lt;/P&gt;&lt;P&gt;  ENDWHILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here actual parameters and formal parameters are pointing to different memory location&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 10:06:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980150#M950619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T10:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980151#M950620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kittu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the first field   PV_MATNR TYPE MATNR and second field  PT_EDIDD TYPE EDIDD_TT  in the form statement are  call by reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u want to use call by value use the addition 'VALUE'&lt;/P&gt;&lt;P&gt; USING  VALUE(PV_MATNR) &lt;/P&gt;&lt;P&gt;CHANGING VALUE(PT_EDIDD ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no difference for USING  and CHANGING.&lt;/P&gt;&lt;P&gt;the only difference lies with the value addition.&lt;/P&gt;&lt;P&gt;if ur using USING  VALUE ADDITION the original parameter values are not changed when u have used CHANGING VALUE ADDITON  the original parameter values are effected only the FORM is successfully executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;S.Gangi reddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 10:10:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980151#M950620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T10:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980152#M950621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fields are passed by Value and Internal Tables are always passed by reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the SAP documentation.&lt;/P&gt;&lt;P&gt;go to abaphelp tcode&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 10:12:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980152#M950621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T10:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980153#M950622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your response!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The info that you had provided was really helpful. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a good day!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 08:45:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980153#M950622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T08:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980154#M950623</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 am new to abap programming&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we say changes made to formal/actual parameter does not affect to formal/actual parameter, what exactly meant by "changes" ?&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;Shiva Sahu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 10:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980154#M950623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-24T10:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980155#M950624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see given link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db979d35c111d1829f0000e829fbfe/content.htm" title="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db979d35c111d1829f0000e829fbfe/content.htm"&gt;Passing Parameters to Subroutines - ABAP Programming (BC-ABA) - SAP Library&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Abbas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 10:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980155#M950624</guid>
      <dc:creator>former_member194739</dc:creator>
      <dc:date>2014-04-24T10:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Please go through the code, is it pass by value?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980156#M950625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Syed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already gone through to this link but still i am not able to find the meaning of "changes made to formal parameter can affect to actual parameter".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what kind of changes can be made to formal parameter and how it can affect to formal parameter. please brief me with an example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shiva Sahu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Apr 2014 10:28:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-go-through-the-code-is-it-pass-by-value/m-p/3980156#M950625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-24T10:28:25Z</dc:date>
    </item>
  </channel>
</rss>

