<?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 ABAP OOP / Calling Method  ...Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003120#M407968</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Trying out few oop codes....&lt;/P&gt;&lt;P&gt;While calling class instance methods and passing parameters, when to use the following syntax.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: cvar  type ref to class1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         cvar-&amp;gt;method( exporting variable1 = value ) &lt;/P&gt;&lt;P&gt;                                                   &lt;/P&gt;&lt;P&gt;       (or) some time i see sample codes with out key  word 'exporting'&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;              cvar-&amp;gt;method(  variable1 = value  ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       (or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              cvar-&amp;gt;method(  value  ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       (or) some times with key word CALL  METHOD&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;   CREATE OBJECT cvar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL METHOD cvar-&amp;gt;method&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;   variable1 = value.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried out a uniform way of calling ,but getting errors.Any inputs please..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bvan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Mar 2007 23:58:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-15T23:58:48Z</dc:date>
    <item>
      <title>ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003120#M407968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Trying out few oop codes....&lt;/P&gt;&lt;P&gt;While calling class instance methods and passing parameters, when to use the following syntax.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: cvar  type ref to class1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         cvar-&amp;gt;method( exporting variable1 = value ) &lt;/P&gt;&lt;P&gt;                                                   &lt;/P&gt;&lt;P&gt;       (or) some time i see sample codes with out key  word 'exporting'&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;              cvar-&amp;gt;method(  variable1 = value  ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       (or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              cvar-&amp;gt;method(  value  ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       (or) some times with key word CALL  METHOD&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;   CREATE OBJECT cvar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL METHOD cvar-&amp;gt;method&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;P&gt;   variable1 = value.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried out a uniform way of calling ,but getting errors.Any inputs please..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bvan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Mar 2007 23:58:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003120#M407968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-15T23:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003121#M407969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, in newer releases, you can omit the CALL METHOD, this is not true in 46c except for when you are having a RETURN parameter.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, if there is only one IMPORTing parameter you may use this syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cvar-&amp;gt;method( value ) .&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;cvar-&amp;gt;method( variable1 = value ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if there is more than one IMPORTING parameter or there are also EXPORTING or CHANGING parameters you should use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cvar-&amp;gt;method( exporting variable1 = value&lt;/P&gt;&lt;P&gt;                                    variable 2 = value ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I know, it is a little confusing.&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>Fri, 16 Mar 2007 00:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003121#M407969</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-16T00:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003122#M407970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bhavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  First  declare the class.&lt;/P&gt;&lt;P&gt;  Implement the class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare the Class reference variable &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Create the class object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: cvar type ref to class1.&lt;/P&gt;&lt;P&gt;          CREATE OBJECT cvar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calling Methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To call a method, use the following statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD &amp;lt;meth&amp;gt; EXPORTING... &amp;lt;ii&amp;gt; =.&amp;lt;f i&amp;gt;... &lt;/P&gt;&lt;P&gt;                   IMPORTING... &amp;lt;ei&amp;gt; =.&amp;lt;g i&amp;gt;... &lt;/P&gt;&lt;P&gt;                   CHANGING ... &amp;lt;ci&amp;gt; =.&amp;lt;f i&amp;gt;... &lt;/P&gt;&lt;P&gt;                   RECEIVING         r = h &lt;/P&gt;&lt;P&gt;                   EXCEPTIONS... &amp;lt;ei&amp;gt; = rc i...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way in which you address the method &amp;lt;method&amp;gt; depends on the method itself and from where you are calling it. Within the implementation part of a class, you can call the methods of the same class directly using their name &amp;lt;meth&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD &amp;lt;meth&amp;gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outside the class, the visibility of the method depends on whether you can call it at all. Visible instance methods can be called from outside the class using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD &amp;lt;ref&amp;gt;-&amp;gt;&amp;lt;meth&amp;gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &amp;lt;ref&amp;gt; is a reference variable whose value points to an instance of the class. Visible instance methods can be called from outside the class using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD &amp;lt;class&amp;gt;=&amp;gt;&amp;lt;meth&amp;gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &amp;lt;class&amp;gt; is the name of the relevant class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you call a method, you must pass all non-optional input parameters using the EXPORTING or CHANGING addition in the CALL METHOD statement. You can (but do not have to) import the output parameters into your program using the IMPORTING or RECEIVING addition. Equally, you can (but do not have to) handle any exceptions triggered by the exceptions using the EXCEPTIONS addition. However, this is recommended.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You pass and receive values to and from methods in the same way as with function modules, that is, with the syntax: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... &amp;lt;Formal parameter&amp;gt; = &amp;lt;Actual parameter&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after the corresponding addition. The interface parameters (formal parameters) are always on the left-hand side of the equals sign. The actual parameters are always on the right. The equals sign is not an assignment operator in this context; it merely serves to assign program variables to the interface parameters of the method. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the interface of a method consists only of a single IMPORTING parameter, you can use the following shortened form of the method call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD &amp;lt;method&amp;gt;( f).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The actual parameter &amp;lt;f&amp;gt; is passed to the input parameters of the method. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the interface of a method consists only of IMPORTING parameters, you can use the following shortened form of the method call:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD &amp;lt;method&amp;gt;(....&amp;lt;ii&amp;gt; =.&amp;lt;f i&amp;gt;...).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each actual parameter &amp;lt;f i &amp;gt; is passed to the corresponding formal parameter &amp;lt;i i &amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. mark if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 02:52:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003122#M407970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T02:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003123#M407971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If there is only one importing parameter use this format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cvar-&amp;gt;method( value ) .&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;cvar-&amp;gt;method( variable1 = value ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if there is more than one importing parameter together with exporting or changing parameters then uset his format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cvar-&amp;gt;method( exporting variable1 = value&lt;/P&gt;&lt;P&gt;variable 2 = value ) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way to aviod such conflicts is by using the pattern command&lt;DEL&gt;-&amp;gt; Abap objects&lt;/DEL&gt;-&amp;gt; and then specify your parameters....This is the safest way as the system inserts the signature for the method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.....Please reward points if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 08:14:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003123#M407971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T08:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003124#M407972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Bhavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 ways of method calls in ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. CALL METHOD &amp;lt;ref_name&amp;gt;-&amp;gt;&amp;lt;method_name&amp;gt;&lt;/P&gt;&lt;P&gt;                            EXPORTING par_im = ex_val&lt;/P&gt;&lt;P&gt;                            IMPORTING  par_ex = im_val&lt;/P&gt;&lt;P&gt;                            ..&lt;/P&gt;&lt;P&gt;2. There is another equivalent of this which uses a shorter syntax - in which &lt;/P&gt;&lt;P&gt;    CALL METHOD prefix is not used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &amp;lt;ref_name&amp;gt;-&amp;gt;&amp;lt;method_name&amp;gt; ( EXPORTING par_im = ex_val&lt;/P&gt;&lt;P&gt;                                                    IMPORTING  par_ex = im_val&lt;/P&gt;&lt;P&gt;                                                    .. ).&lt;/P&gt;&lt;P&gt;     Unlike the first method the parameters are listed in brackets in this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Now when we call a method that has only 1 import parameter , that actual &lt;/P&gt;&lt;P&gt;    parameter  can be specified in brackets without any other additions. When we &lt;/P&gt;&lt;P&gt;    call a method that has only import parameters, EXPORTING addition can be &lt;/P&gt;&lt;P&gt;    omitted. &lt;/P&gt;&lt;P&gt;    E.g.  &amp;lt;ref_name&amp;gt;-&amp;gt;&amp;lt;method_name&amp;gt; ( par_im = ex_val ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Regards&lt;/P&gt;&lt;P&gt;    Indrajit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 15:01:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003124#M407972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T15:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003125#M407973</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;there are different ways in calling a method,check the simple example below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS C1 DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;   DATA : NUM TYPE I VALUE 5.&lt;/P&gt;&lt;P&gt;   METHODS : METH1 IMPORTING INPUT1 TYPE I   .&lt;/P&gt;&lt;P&gt; ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CLASS C1 IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;  METHOD : METH1.&lt;/P&gt;&lt;P&gt;   num = NUM * INPUT1 .&lt;/P&gt;&lt;P&gt;   WRITE:/5 NUM .&lt;/P&gt;&lt;P&gt;   num = 5.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt; ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  DATA : OREF1 TYPE REF TO C1.&lt;/P&gt;&lt;P&gt;  CREATE OBJECT : OREF1.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Different ways of calling the method with one import parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;lt;b&amp;gt;   CALL METHOD OREF1-&amp;gt;METH1 EXPORTING INPUT1 = 4.&lt;/P&gt;&lt;P&gt;   CALL METHOD OREF1-&amp;gt;METH1( INPUT1 = 5 ).&lt;/P&gt;&lt;P&gt;   CALL METHOD OREF1-&amp;gt;METH1( 6 ).&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 16:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003125#M407973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T16:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003126#M407974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all your response and i agree with Rich that there exist little confusion&lt;/P&gt;&lt;P&gt;when calling methods.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bvan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 22:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003126#M407974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T22:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003127#M407975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 22:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003127#M407975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T22:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003128#M407976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please be sure to award points if any of these answers were a little help.  I know it is confusing.  &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;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 22:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003128#M407976</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-16T22:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOP / Calling Method  ...Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003129#M407977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note:  The others have provided pretty good answers, much more so than mine.  If they were helpful, please consider awarding points there as well.  Thanks&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>Fri, 16 Mar 2007 23:33:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oop-calling-method-help/m-p/2003129#M407977</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-03-16T23:33:09Z</dc:date>
    </item>
  </channel>
</rss>

