<?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: Getters Methods - Exporting vs Returning value() in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758695#M1461306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my opinion &lt;EM&gt;functional method&lt;/EM&gt; is better choice, for the following reasons:&lt;/P&gt;&lt;P&gt;- can be used inline (i.e. as an operand of IF...ENDIF block)&lt;/P&gt;&lt;P&gt;- you don't have to worry about initializing returning parameters, this is done in each method call. For exporting parameter you have to be very carefull, as they might be already passed to the method with some data in them. Althought it not recommended, it is doable, so before you call such method you have to pay atention to that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use 'exporting', i'm just able to call the method using 'call method' keywords.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is untrue. You can call it like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ref-&amp;gt;method( exporting ....
                      changing .... ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;So the same way as you would call functional method, but you MUST determine whether is &lt;EM&gt;exporting/changing/imporitng&lt;/EM&gt; parameter unless there are only &lt;EM&gt;importing&lt;/EM&gt; parameters. In this case you can even skip the input/output signature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use 'returning value', i have a functional method but its parameters must be fully specified.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure now, but I think you could pass reference to data object (type ref to DATA) and deference it outside the method typing it respectively. I cannot however confirm this right now (no access to system) so here I may mistake. Try it out though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Apr 2010 19:32:18 GMT</pubDate>
    <dc:creator>MarcinPciak</dc:creator>
    <dc:date>2010-04-05T19:32:18Z</dc:date>
    <item>
      <title>Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758692#M1461303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi OO Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm doing a test oo report. On its first version, i declared all data objects in the &lt;EM&gt;public section&lt;/EM&gt; of all classes. Now, i moved all data objects to the private sections for &lt;STRONG&gt;encapsulation&lt;/STRONG&gt; purposes. Therefore, i have to implement &lt;STRONG&gt;get methods&lt;/STRONG&gt; for everything declared (including &lt;STRONG&gt;tables&lt;/STRONG&gt; and references) in the report. My question is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best option to create get methods: Create &lt;STRONG&gt;simple methods&lt;/STRONG&gt; using the &lt;STRONG&gt;"Exporting"&lt;/STRONG&gt; keyword or create &lt;STRONG&gt;functional methods&lt;/STRONG&gt; using &lt;STRONG&gt;"Returning value"&lt;/STRONG&gt; keywords?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use 'exporting', i'm just able to call the method using &lt;STRONG&gt;'call method'&lt;/STRONG&gt; keywords. However formal parameter may &lt;STRONG&gt;not&lt;/STRONG&gt; be fully specified (i can export tables in such method)&lt;/P&gt;&lt;P&gt;If i use 'returning value', i have a &lt;STRONG&gt;functional method&lt;/STRONG&gt; but its parameters &lt;STRONG&gt;must be&lt;/STRONG&gt; fully specified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's is the best option in your opinion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Apr 2010 16:27:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758692#M1461303</guid>
      <dc:creator>FabioPagoti</dc:creator>
      <dc:date>2010-04-05T16:27:11Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758693#M1461304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A getter method is to get one attribute, so declaring a functional method is sufficient (SAP also automatically creates these methods with RETURNING in persistent classes).&lt;/P&gt;&lt;P&gt;Or maybe you want to do something else than just a getter method?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Apr 2010 17:35:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758693#M1461304</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-04-05T17:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758694#M1461305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sandra.. thanks for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in fact i really need get methods, but the problem is that some attributes which need to be returned are tables. The addition RETURNING cannot be used with generic types.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Apr 2010 18:16:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758694#M1461305</guid>
      <dc:creator>FabioPagoti</dc:creator>
      <dc:date>2010-04-05T18:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758695#M1461306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my opinion &lt;EM&gt;functional method&lt;/EM&gt; is better choice, for the following reasons:&lt;/P&gt;&lt;P&gt;- can be used inline (i.e. as an operand of IF...ENDIF block)&lt;/P&gt;&lt;P&gt;- you don't have to worry about initializing returning parameters, this is done in each method call. For exporting parameter you have to be very carefull, as they might be already passed to the method with some data in them. Althought it not recommended, it is doable, so before you call such method you have to pay atention to that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use 'exporting', i'm just able to call the method using 'call method' keywords.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This is untrue. You can call it like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
ref-&amp;gt;method( exporting ....
                      changing .... ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;So the same way as you would call functional method, but you MUST determine whether is &lt;EM&gt;exporting/changing/imporitng&lt;/EM&gt; parameter unless there are only &lt;EM&gt;importing&lt;/EM&gt; parameters. In this case you can even skip the input/output signature.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i use 'returning value', i have a functional method but its parameters must be fully specified.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure now, but I think you could pass reference to data object (type ref to DATA) and deference it outside the method typing it respectively. I cannot however confirm this right now (no access to system) so here I may mistake. Try it out though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Apr 2010 19:32:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758695#M1461306</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-04-05T19:32:18Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758696#M1461307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Halo Fabio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The addition RETURNING cannot be used with generic types.&lt;/EM&gt; is wrong . You can declare a generic type (type ref to data ) in your class . You can use that generic type as your retruning parameter type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For eg .&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  methods get_records_to_be_displayed&lt;/P&gt;&lt;P&gt;  abstract&lt;/P&gt;&lt;P&gt;    returning&lt;/P&gt;&lt;P&gt;      value(rt_records_to_display) type tt_refdata .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here tt_refdata is type ref to  DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Apr 2010 09:28:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758696#M1461307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-06T09:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758697#M1461308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;a getter method MUST have a returning parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you use a EXPORTING parameter then it is not a getter anymore !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it could seem to be not so bad to use EXPORTING, but then when you will use advanced techniques (like WebUI in CRM, just an example) it will not work if you don't respect this principle&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a lot of standard classes in BOL (Business Object Layer) do rely on type of parameters in method signature...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 14:28:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758697#M1461308</guid>
      <dc:creator>franois_henrotte</dc:creator>
      <dc:date>2010-04-07T14:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758698#M1461309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am a fan of returning parameters for GET methods as well.  I think it is a cleaner syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;this_value = this_object-&amp;gt;get_this_value( ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another advantage in using returning parameters is when using method chaining, which will be available in NW 7.02( which is NW 7.0 enhancement pack 2 ). THis is coming later this year.  Basically, for functional methods, one which return exactly one return parameter, you can chain method calls together.  Like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;this_object-&amp;gt;do_something(  another_object-&amp;gt;get_value( ) ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the above code, the GET_VALUE method returns a value which is then passed to the importing parameter of the DO_SOMETHING method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, this type of thing has been supported by other langauges for years, but is only coming to ABAP now.  &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;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rich Heilman on Apr 7, 2010 10:59 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 14:58:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758698#M1461309</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2010-04-07T14:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758699#M1461310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One more point to add: Returning always use the Pass by Value where as with Exporting you can decide if you want pass by value of reference. From encapsulation purpose, we should always use the Pass by Value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 15:45:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758699#M1461310</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2010-04-07T15:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758700#M1461311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another advantage in using returning parameters is when using method chaining, which will be available in NW 7.02( which is NW 7.0 enhancement pack 2 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Finally! Anxiously awaiting this &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 16:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758700#M1461311</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-04-07T16:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758701#M1461312</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;&lt;/P&gt;&lt;P&gt;Your example on [method chaining|http://en.wikipedia.org/wiki/Method_chaining] is slightly off as you are not &lt;EM&gt;chaining methods&lt;/EM&gt;, but merely use the result of another method as an input parameter (instead of invoking a method on the returned object of the first method call). Here's and example from the ABAP help for [method chaining|http://help.sap.com/abapdocu_70/en/ABENFUNCTIONS_EXPRESSIONS.htm].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyhow, for me you're touching a really sore point in ABAP though. The possibility to use expressions in statements (e.g. IF) was missing far too long and only with release 7.0 EHP 2 we seem to get this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe they even provide &lt;EM&gt;boolean&lt;/EM&gt;'s at some point (meaning variables that can be assigned the result of a logical expression). I'd be more than happy if somebody would point out to me that this feature already exists... &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as the getter/setter discussion I agree with the others that &lt;EM&gt;true&lt;/EM&gt; getter/setter methods by definition should only use a &lt;EM&gt;returning&lt;/EM&gt; parameter. After all, they are just a crutch (awkward syntax, code bloat) for encapsulating access to attributes (might be calculated) and thus should only return one object/value. On my wish list though would be the shorter and more flexible syntax like Scala setters and getters or .NET properties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers, harald&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 21:04:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758701#M1461312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-07T21:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758702#M1461313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harold, thanks for pointing out that my term, "method chaining" and my example, don't necessarily sync up.  I have a habit of using the term method chaining to describe both my example, and the one you see in the help document.  I need to learn to use the term "enhanced expressions" when referring to my example code.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; Thanks for the clarification.  Also, I feel your pain about certain ABAP syntax being missing for far too long.  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;  But I have say that I feel pretty good about the new investments into the ABAP language and tool set.  SAP is investing heavy in these areas, and some very cool things are coming.  So stay tuned.&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>Wed, 07 Apr 2010 21:56:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758702#M1461313</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2010-04-07T21:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Getters Methods - Exporting vs Returning value()</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758703#M1461314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the update, Rich. The new language features look good, my main issue is that at clients we're more often using older releases and all those nice features are not available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyhow, I actually wanted to edit my posting to fix my poor mistake of mentioning setters and returning parameters - not sure where my brain was, when typing this... &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 22:19:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getters-methods-exporting-vs-returning-value/m-p/6758703#M1461314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-07T22:19:08Z</dc:date>
    </item>
  </channel>
</rss>

