<?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: Need of Changing Parameters in Function Module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736914#M899352</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;I also read in the forums , that , we use import parameter for headers and tables parameter for line items. Is the explanation right&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your explanation has really clarified the finer points of Import /export / Changing.  Then , why do we require a tables parameter if we can use changing parameter for processing some changes to data in the FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jul 2008 13:43:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-01T13:43:27Z</dc:date>
    <item>
      <title>Need of Changing Parameters in Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736911#M899349</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;Why we need sepearte Import and Export parameters in Function Module if the Changing Parameters &lt;/P&gt;&lt;P&gt;acts as both import and export parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the use of using Changing Parametrs in Function Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Sundaresan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 05:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736911#M899349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T05:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need of Changing Parameters in Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736912#M899350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is to protect the Source . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e incomming paramter not to be change... coz in changing only ref is passed to FM. so change is directly affecting the variable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 05:45:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736912#M899350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T05:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need of Changing Parameters in Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736913#M899351</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;&lt;STRONG&gt;EXPORT PARAMETERS&lt;/STRONG&gt;: When u r passing some value to the function, and the parameter will not be changed in the function, we use export parameter. &lt;U&gt;Example&lt;/U&gt;: &lt;EM&gt;u pass parameter (a : 10) to a function, even after the function has been executed, value of a will be 10 only.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IMPORT PARAMETER&lt;/STRONG&gt;: When u require some value back from the function. u do not provide any initial value to the function. &lt;U&gt;Example&lt;/U&gt; : &lt;EM&gt;u pass a parameter (b: &amp;lt;blank&amp;gt;) to the function, function returns the same import parameter as (b : 20).&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CHANGING PARAMETER&lt;/STRONG&gt;: When u pass some value to the function and that function may change that value inside function, then changing parameters are used. &lt;U&gt;Example&lt;/U&gt;: &lt;EM&gt;u pass parameter ( c: 30) to the function as changing parameter and function modifies this variable and return ( c: 50).&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points if helpful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;- Rishika Bawa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 06:05:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736913#M899351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T06:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Need of Changing Parameters in Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736914#M899352</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;I also read in the forums , that , we use import parameter for headers and tables parameter for line items. Is the explanation right&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your explanation has really clarified the finer points of Import /export / Changing.  Then , why do we require a tables parameter if we can use changing parameter for processing some changes to data in the FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 13:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736914#M899352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T13:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need of Changing Parameters in Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736915#M899353</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;chk this:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db98ef35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/db98ef35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Keerthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2008 13:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-of-changing-parameters-in-function-module/m-p/3736915#M899353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-01T13:51:25Z</dc:date>
    </item>
  </channel>
</rss>

