<?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: Difference between receiving, changing inporting, exporting and returning in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636998#M875935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;test&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Feb 2011 09:40:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-10T09:40:23Z</dc:date>
    <item>
      <title>Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636993#M875930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi OO ABAP Gurus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clear me the Difference between receiving, changing inporting, exporting and returning parameters of a method?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance&lt;/P&gt;&lt;P&gt;Sandeep Sharma..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 05:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636993#M875930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T05:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636994#M875931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         we are using &lt;STRONG&gt;changing and using&lt;/STRONG&gt; when working with subroutines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using and changing : Both are same except, the order how they are taking the order of parameters in called subroutine.&lt;/P&gt;&lt;P&gt;In general, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using:  is used in subroutines when input parameter value doesn't change in the called program.&lt;/P&gt;&lt;P&gt;Changing: is used in subroutines when input parameter value does change in the called program and need to update its value in calling programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing, Exporting,Changing: These are used when working with function modules only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing: To receive the parameter values from driver program &lt;/P&gt;&lt;P&gt;                to function module&lt;/P&gt;&lt;P&gt;Exporting: To send the calculated parameter values to driver  &lt;/P&gt;&lt;P&gt;                program from function module.&lt;/P&gt;&lt;P&gt;Changing: It is used to send the updated parameter values&lt;/P&gt;&lt;P&gt;               (Intially receiving from driver program)&lt;/P&gt;&lt;P&gt;                from function module to driver program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful, reward points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by&lt;/P&gt;&lt;P&gt;G.V.K.Prasad&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: PRASAD GVK on Apr 9, 2008 8:57 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 06:57:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636994#M875931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T06:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636995#M875932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forget what Prasad said - he's not talking about classes, or objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It depends on context.  For CALLING a method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Receiving - typed value returned by the method - maximum one of these&lt;/P&gt;&lt;P&gt;Importing - value returned by the method - many possible, all optional&lt;/P&gt;&lt;P&gt;Exporting - value sent to the method - many possible, some optional&lt;/P&gt;&lt;P&gt;Changing - value sent to the method , changed within the method, sent back from method - many possible some optional&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For DEFINING a method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Returning - typed value returned to the caller- maximum one of these&lt;/P&gt;&lt;P&gt;Exporting - value sent to the caller - many possible, all optional&lt;/P&gt;&lt;P&gt;Importing - value sent by the caller - many possible, some optional&lt;/P&gt;&lt;P&gt;Changing - value sent by the caller, changed within the method, sent back to caller - many possible some optional&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note - only for returning/receiving must the parameter have a specific type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See ABAP help for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 07:21:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636995#M875932</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-04-09T07:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636996#M875933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Matt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the answer..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But still i have one doubt..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you define &lt;/P&gt;&lt;P&gt;For receiving and returning typed value&lt;/P&gt;&lt;P&gt;for opthers value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please clear me  betwee typed value and value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide me a example if possible for you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 10:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636996#M875933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T10:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636997#M875934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For receiving/returning you can't use a generic type, such as: ANY, ANY TABLE, STANDARD TABLE, CLIKE, NUMERIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to use a specific type:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;an ABAP type (e.g. I, C, string),&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;a type defined in the data dictionary (a view, a database table, a data type ) e.g. T100, S38E&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;a type REF TO DATA&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;type REF TO some other class or interface&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;another class's public type, e.g. ZCL_MYCLASS=&amp;gt;PUBLIC_TYPE&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;a type defined with the type section of the class itself.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The point is that the type of the receiving/returning parameter must be known at compile time.  For the other parameter types, it can be determined at runtime as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 14:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636997#M875934</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-04-09T14:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636998#M875935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;test&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Feb 2011 09:40:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636998#M875935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-10T09:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636999#M875936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When we define a Method, we can use following  for Formal Parameters-&lt;/P&gt;&lt;P&gt;1- IMPORTING-for Input Formal Parameter&lt;/P&gt;&lt;P&gt;2-EXPORTING-for output Formal Parameter&lt;/P&gt;&lt;P&gt;3-CHANGING-for Input/outputt Formal  Parameter&lt;/P&gt;&lt;P&gt;4-RETURNING-for outputt Parameter, passed by value only, and used with a Functional Method&lt;/P&gt;&lt;P&gt;          When we call a Method, RECEIVING is used for Actual Parameter to receive the return value of Method in data object.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;   CP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Feb 2011 17:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3636999#M875936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-12T17:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3637000#M875937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you should post a question &lt;STRONG&gt;after&lt;/STRONG&gt; reading the [documentation|http://help.sap.com/abapdocu_702/en/abapcall_method_parameters.htm].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Feb 2011 19:43:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3637000#M875937</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-02-12T19:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3637001#M875938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As per i have seen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Importing parameters can be optional or non-optional.&lt;/P&gt;&lt;P&gt;Exporting parameters can be optional or non-optional.&lt;/P&gt;&lt;P&gt;Changing parameters can be optional or non-optional.&lt;/P&gt;&lt;P&gt;But,&lt;/P&gt;&lt;P&gt;Returning Parameter is always optional by default.&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;&lt;/P&gt;&lt;P&gt;Pranoy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Pranoy on Feb 2, 2012 6:57 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2012 05:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3637001#M875938</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-02T05:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between receiving, changing inporting, exporting and returning</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3637002#M875939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i use changing parameter (in ooabap) to pass and receive the values at the same time for a mathod?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt; Moderator message: Please don't post a question on an old thread. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Neil Gardiner on Feb 20, 2012 4:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2012 04:52:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-receiving-changing-inporting-exporting-and-returning/m-p/3637002#M875939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-20T04:52:00Z</dc:date>
    </item>
  </channel>
</rss>

