<?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: addition for call method / methods in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316843#M508197</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link -&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/08/d27c03b81011d194f60000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/08/d27c03b81011d194f60000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 19 May 2007 14:07:41 GMT</pubDate>
    <dc:creator>amit_khare</dc:creator>
    <dc:date>2007-05-19T14:07:41Z</dc:date>
    <item>
      <title>addition for call method / methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316842#M508196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i rather confused of these addition : importing, exporting, returning, changing, receiving.&lt;/P&gt;&lt;P&gt;can explain these addtion used in call method and methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 May 2007 13:51:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316842#M508196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-19T13:51:35Z</dc:date>
    </item>
    <item>
      <title>Re: addition for call method / methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316843#M508197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link -&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/08/d27c03b81011d194f60000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/08/d27c03b81011d194f60000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 May 2007 14:07:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316843#M508197</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-05-19T14:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: addition for call method / methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316844#M508198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically what you are describing is the signature of the method.  That is, the interface in which you may pass or receive variables.  IMPORTING and CHANGING paramaters are ones that you pass to the method call,  CHANGING paramters may be modified inside the method, IMPORTING parameters can not. EXPORTING paramaters and RETURNING paramters are basicially the same thing, with different syntax, you can only have one RETURNING paramter, but many EXPORTING parameters.  These two are used to receive data from the method call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 May 2007 23:49:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316844#M508198</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-05-19T23:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: addition for call method / methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316845#M508199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich,&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;Declaring methods (methods) and calling a method (call method) for the parameter interface are different.&lt;/P&gt;&lt;P&gt;For methods, exporting and returning are basically the same but&lt;/P&gt;&lt;P&gt;For call method, importing and receiving are basically the same. &lt;/P&gt;&lt;P&gt;Correct?&lt;/P&gt;&lt;P&gt;Thank You.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 May 2007 00:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316845#M508199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-20T00:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: addition for call method / methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316846#M508200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When declaring a method, you would use the IMPORTING extension to pass parameters in, but when calling you would use the EXPORTING.  This is the only confusing part.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call method o_ref-&amp;gt;some_method
         exporting
              im_parameter  = 'Some_Value'.&lt;/CODE&gt;&lt;/PRE&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;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 May 2007 01:00:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/addition-for-call-method-methods/m-p/2316846#M508200</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-05-20T01:00:49Z</dc:date>
    </item>
  </channel>
</rss>

