<?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: static methods in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001144#M709063</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;The Best way to learn about Static method. Refer below Link----&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Parvez.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Nov 2007 10:30:51 GMT</pubDate>
    <dc:creator>former_member2382</dc:creator>
    <dc:date>2007-11-06T10:30:51Z</dc:date>
    <item>
      <title>static methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001141#M709060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are static methods, and how can it be called.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 11:06:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001141#M709060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-05T11:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: static methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001142#M709061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A static method can be called without prior instantiation of the class. If the method does not need to know any details of an instance then we can define the method as static.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static methods can only use static components in their implementation part.Static methods are called using CALL METHOD &amp;lt;classname&amp;gt;=&amp;gt;&amp;lt;class_method&amp;gt;.&lt;/P&gt;&lt;P&gt;If you are calling a static method from within the class, you can omit the class name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You access static attributes using &amp;lt;classname&amp;gt;=&amp;gt;&amp;lt;class_attribute&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Nov 2007 11:11:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001142#M709061</guid>
      <dc:creator>Yogitha</dc:creator>
      <dc:date>2007-11-05T11:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: static methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001143#M709062</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;Static methods (also referred to as class methods) are called using CALL METHOD &amp;lt;classname&amp;gt;=&amp;gt;&amp;lt;class_method&amp;gt;.&lt;/P&gt;&lt;P&gt;If you are calling a static method from within the class, you can omit the class name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You access static attributes using &amp;lt;classname&amp;gt;=&amp;gt;&amp;lt;class_attribute&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You access instance attributes using &amp;lt;instance&amp;gt;-&amp;gt;&amp;lt;instance_attribute&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&amp;gt; and -&amp;gt; are the component selectors&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both instance and static events can be triggered in instance methods.&lt;/P&gt;&lt;P&gt;Only static events can be triggered in static methods.&lt;/P&gt;&lt;P&gt;Events can only have EXPORTING parameters which must be passed by value.&lt;/P&gt;&lt;P&gt;Triggering an event using the statement RAISE EVENT has the following effect:&lt;/P&gt;&lt;P&gt;   - The program flow is interrupted at that point&lt;/P&gt;&lt;P&gt;   - The event handler methods registered to this event are called and                                                &lt;/P&gt;&lt;P&gt;      processed&lt;/P&gt;&lt;P&gt;Once all event handler methods have been executed, the program flow continues &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if usefull&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 06:05:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001143#M709062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T06:05:51Z</dc:date>
    </item>
    <item>
      <title>Re: static methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001144#M709063</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;The Best way to learn about Static method. Refer below Link----&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/08/d27c03b81011d194f60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Parvez.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 10:30:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/static-methods/m-p/3001144#M709063</guid>
      <dc:creator>former_member2382</dc:creator>
      <dc:date>2007-11-06T10:30:51Z</dc:date>
    </item>
  </channel>
</rss>

