<?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 regarding changing and using in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-changing-and-using/m-p/3583494#M862717</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts: &lt;/P&gt;&lt;P&gt;    First thank you in advance for all your replies. &lt;/P&gt;&lt;P&gt;    would you please explain the difference of changing and using preferably by an example? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    couldn't thank you more. &lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Apr 2008 07:48:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-02T07:48:40Z</dc:date>
    <item>
      <title>regarding changing and using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-changing-and-using/m-p/3583494#M862717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts: &lt;/P&gt;&lt;P&gt;    First thank you in advance for all your replies. &lt;/P&gt;&lt;P&gt;    would you please explain the difference of changing and using preferably by an example? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    couldn't thank you more. &lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 07:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-changing-and-using/m-p/3583494#M862717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T07:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: regarding changing and using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-changing-and-using/m-p/3583495#M862718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if in the subroutine if you want to change any value...pass as changing parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you just want to use the variable pass as using parameter..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
perform using lv_using changing lv_change.
 
form using p_lv_using changing p_lv_change.
 
p_lv_change = p_lv_change * 2.
 
p_lv_using = p_lv_using * 2. " &amp;lt;&amp;lt;&amp;lt; not possible as its using parameter.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;values will not reflect to original  values if use using where as it will reflect  for changing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 07:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-changing-and-using/m-p/3583495#M862718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-02T07:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: regarding changing and using</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-changing-and-using/m-p/3583496#M862719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;USING and CHANGING in PERFORMS means like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;USING- Call by value&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CHANGING- Call by reference&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the example below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PERFORM conv_atinnnam_no USING l_refbatch CHANGING w_refbatch.&lt;/P&gt;&lt;P&gt;FORM conv_atinnnam_no USING    p_name&lt;/P&gt;&lt;P&gt;                      CHANGING p_no.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_ATINN_INPUT'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            input  = p_w_name&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            output = p_w_no.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " conv_atinnnam_no&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The parameters passing under USING will not change if the corrosponding parameter in the FORM changes unless it is global variable. But in case of parameter under changing what ever changes we are making inside FORM will be reflected to Original variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In case of global variables USING and CHANGING works in&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the same way.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Apr 2008 07:59:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-changing-and-using/m-p/3583496#M862719</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-04-02T07:59:40Z</dc:date>
    </item>
  </channel>
</rss>

