<?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: changing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433424#M824631</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 is used in subroutines when u just pass the value of a variable and u never change that value in the so called form u r just supposed to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  for example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form &amp;lt;name&amp;gt; using w_no type i.&lt;/P&gt;&lt;P&gt; *local variables declaration.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   data:&lt;/P&gt;&lt;P&gt;      lw_data type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   lw_data = w_no + 2.&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;see here u sed the value of w_no but u have not changed it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form &amp;lt;name&amp;gt; changing w_no type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   w_no = w_no + 2.&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;see here u changed the value of w_no so here u have to use changing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope i am clear to u..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 Feb 2008 13:05:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-16T13:05:14Z</dc:date>
    <item>
      <title>changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433421#M824628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;difference between changing and using in subroutines&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 12:36:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433421#M824628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T12:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433422#M824629</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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 12:39:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433422#M824629</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-02-16T12:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433423#M824630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u modify the parameter in subroutine which is passed to ur subroutine as using and Once u come out of the subroutine the variable value will be same as what u had before calling the subroutine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if u use changing ur variable will be changed to the new value when u come out of the subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;sathar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 12:48:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433423#M824630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T12:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: changing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433424#M824631</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 is used in subroutines when u just pass the value of a variable and u never change that value in the so called form u r just supposed to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  for example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form &amp;lt;name&amp;gt; using w_no type i.&lt;/P&gt;&lt;P&gt; *local variables declaration.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   data:&lt;/P&gt;&lt;P&gt;      lw_data type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   lw_data = w_no + 2.&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;see here u sed the value of w_no but u have not changed it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form &amp;lt;name&amp;gt; changing w_no type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   w_no = w_no + 2.&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;see here u changed the value of w_no so here u have to use changing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope i am clear to u..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Feb 2008 13:05:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing/m-p/3433424#M824631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-16T13:05:14Z</dc:date>
    </item>
  </channel>
</rss>

