<?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: Question to access method object in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801537#M654179</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, there are two valid syntaxes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this syntax as already suggested:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD me-&amp;gt;get_data_list.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this one is also valid:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
me-&amp;gt;get_data_list( ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Notice the space between the braces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Sep 2007 17:26:30 GMT</pubDate>
    <dc:creator>alejandro_bindi</dc:creator>
    <dc:date>2007-09-12T17:26:30Z</dc:date>
    <item>
      <title>Question to access method object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801534#M654176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Look my code class :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS myclass DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHODS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  get_data_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; get_data_list_spe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS myclass IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD get_data_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...  my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD get_data_list_spe.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;me-&amp;gt;get_data_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ABAP compilator reject this code because me-&amp;gt;get_data_list is not defined. Is it possible to call a other method ? if yes how can i get this in my code ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 07:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801534#M654176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T07:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Question to access method object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801535#M654177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you have tho call the oder method like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call method me-&amp;gt;get_data_list.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and not &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;me-&amp;gt;get_data_list.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then it works..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gianpietro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 08:22:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801535#M654177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T08:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Question to access method object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801536#M654178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shame on me &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and 10 points for you &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 08:39:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801536#M654178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T08:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: Question to access method object</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801537#M654179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually, there are two valid syntaxes:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this syntax as already suggested:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD me-&amp;gt;get_data_list.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And this one is also valid:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
me-&amp;gt;get_data_list( ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Notice the space between the braces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 17:26:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/question-to-access-method-object/m-p/2801537#M654179</guid>
      <dc:creator>alejandro_bindi</dc:creator>
      <dc:date>2007-09-12T17:26:30Z</dc:date>
    </item>
  </channel>
</rss>

