<?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 b/w static and instance method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575422#M860669</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Instance &amp;amp; Static Method :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u declare one method as a static then we can call that method using class name, that method is independent of that object.You declare them using the &lt;STRONG&gt;CLASS-DATA&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u declare one method as a instance then we can call that method using object name, that method is dependent of that object.You declare them using the &lt;STRONG&gt;DATA&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Instance &amp;amp; Static Attribute :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u declare one attribute as a static then we can use that attribute through class name, that attribute is independent of that object.You declare static methods using the &lt;STRONG&gt;CLASS-METHODS&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u declare one attribute as a instance then we can use that attribute through object name, that attribute is dependent of that object.You declare instance methods using the &lt;STRONG&gt;METHODS&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Mar 2008 12:46:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-21T12:46:42Z</dc:date>
    <item>
      <title>Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575420#M860667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;amp;#61656;	In BADI what is the difference between Static Method and Instance Metbod?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 09:48:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575420#M860667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T09:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575421#M860668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Static Methods&lt;/STRONG&gt;: these methods can be called without creating an object for the class. these methods can be directly called using the class name like&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
cl_gui_frontend_services=&amp;gt;gui_download().
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Instance Methods&lt;/STRONG&gt;: These methods can be only called using the object of the class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Balaji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 09:52:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575421#M860668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T09:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575422#M860669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Instance &amp;amp; Static Method :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u declare one method as a static then we can call that method using class name, that method is independent of that object.You declare them using the &lt;STRONG&gt;CLASS-DATA&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u declare one method as a instance then we can call that method using object name, that method is dependent of that object.You declare them using the &lt;STRONG&gt;DATA&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Instance &amp;amp; Static Attribute :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u declare one attribute as a static then we can use that attribute through class name, that attribute is independent of that object.You declare static methods using the &lt;STRONG&gt;CLASS-METHODS&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u declare one attribute as a instance then we can use that attribute through object name, that attribute is dependent of that object.You declare instance methods using the &lt;STRONG&gt;METHODS&lt;/STRONG&gt; statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 12:46:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575422#M860669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T12:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575423#M860670</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;Instance components exist separately in each instance (object) of the class and are referred using instance component selector using '-&amp;gt;'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static components only exist once per class and are valid for all instances of the class. They are declared with the CLASS- keywords&lt;/P&gt;&lt;P&gt;Static components can be used without even creating an instance of the class and are referred to using static component selector     &amp;#145; =&amp;gt;&amp;#146; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exapmle 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The program contains a class C1 with static attribute : NUM . The method : M1 increments the static attribute by 1 and displays the value each time it is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the main START-OF-SELECTION  portion, two objects : OBJ1 and OBJ2 are created from class C1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, static attribute : NUM is changed and accessed outside the class using the class component selector , &amp;#145;=&amp;gt;&amp;#146;.&lt;/P&gt;&lt;P&gt;Then, both objects OBJ1 and OBJ2 are used to call method : M1 which shows the new value of static attribute : NUM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That the value of the static attribute gets incremented each time when the method M1 of different objects is called shows that this variable is able to retain its value through the entire runtime.&lt;/P&gt;&lt;P&gt;report ysubdel.&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;  CLASS-DATA : NUM TYPE I .&lt;/P&gt;&lt;P&gt;  METHODS : M1.&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 m1 .&lt;/P&gt;&lt;P&gt;   num = num + 1.&lt;/P&gt;&lt;P&gt;   write:/5 num .&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;&lt;/P&gt;&lt;P&gt; START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   c1=&amp;gt;num = 3.&lt;/P&gt;&lt;P&gt;   write:/5 c1=&amp;gt;num .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : OREF1 TYPE REF TO C1 ,&lt;/P&gt;&lt;P&gt;         OREF2 TYPE REF TO C1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT : OREF1 ,&lt;/P&gt;&lt;P&gt;                  OREF2 .&lt;/P&gt;&lt;P&gt;  CALL METHOD OREF1-&amp;gt;M1 .&lt;/P&gt;&lt;P&gt;  CALL METHOD OREF2-&amp;gt;M1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static methods of a class can only use static attributes of that class. It cannot use instance attributes. But, instance methods can use both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Desc:&lt;/P&gt;&lt;P&gt;  Component        type                static/instance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   stnum              Data                      static&lt;/P&gt;&lt;P&gt;  Instnum             Data                    Instance&lt;/P&gt;&lt;P&gt;   Stmeth             Method                Static&lt;/P&gt;&lt;P&gt;  Instmeth            Method                 Instance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both the static and instance methods are attempting to display values of the static and instance attributes: STNUM and INSTNUM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On compilation, an error will be generated which will demonstrate that static method STMETH cannot work with instance attribute, INSTNUM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT YSUBDEL.&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; CLASS-DATA : STNUM TYPE I VALUE 5.&lt;/P&gt;&lt;P&gt; DATA : INSTNUM TYPE I VALUE 6 .&lt;/P&gt;&lt;P&gt; CLASS-METHODS : STMETH .&lt;/P&gt;&lt;P&gt; METHODS : INSTMETH .&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 : STMETH .&lt;/P&gt;&lt;P&gt;   WRITE:/5 STNUM .&lt;/P&gt;&lt;P&gt;   WRITE:/5 INSTNUM .&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  METHOD INSTMETH.&lt;/P&gt;&lt;P&gt;   WRITE:/5 STNUM .&lt;/P&gt;&lt;P&gt;   WRITE:/5 INSTNUM .&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;  CALL METHOD c1=&amp;gt;stmeth .&lt;/P&gt;&lt;P&gt;  CREATE OBJECT OREF1.&lt;/P&gt;&lt;P&gt;  CALL METHOD oref1-&amp;gt;instmeth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is helpful rewards points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pratap.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2008 13:26:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575423#M860670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-21T13:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575424#M860671</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;As per my knowledge i want to share some differences below.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Instant Method or Component :&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The instance Methods or components (data, attributes,events) are exits for each object of the class&lt;/LI&gt;&lt;LI&gt;The syntax of declaring the instance components are data, method, event, interfaces&lt;/LI&gt;&lt;LI&gt;In instance components you must create the object and by using these object you can accessing the components of a class.&lt;/LI&gt;&lt;LI&gt;While calling the instance components every time it will allocate the new memory location.&lt;/LI&gt;&lt;LI&gt;DATA : OBJ TYPE REF TO &amp;lt;CLASS_NAME&amp;gt;.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;OBJ-&amp;gt;&amp;lt;METHOD_NAME&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Static Method or component :&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;T&lt;/STRONG&gt;he static method or components are exist only once for all the objects of the class.&lt;/LI&gt;&lt;LI&gt;The syntax of declaring the static components are CLASS-DATA , CLASS-METHOD, CLASS-EVENTS&lt;/LI&gt;&lt;LI&gt;The static methods or components can access through the object or class&lt;/LI&gt;&lt;LI&gt;when you calling the static components it will one memory location, then again you are calling the static method in the same class it will referred to the same memory location(it uses the call by reference)&lt;/LI&gt;&lt;LI&gt;&amp;lt;CLASS NAME&amp;gt;=&amp;gt;&amp;lt;METHOD_NAME&amp;gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;i hope its helpful for you,&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;P.kiran kumar reddy.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 19 Aug 2020 10:48:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575424#M860671</guid>
      <dc:creator>former_member689077</dc:creator>
      <dc:date>2020-08-19T10:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575425#M860672</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Difference between Instance Method and Static Method :&lt;/P&gt;&lt;P&gt; &amp;gt; Instance methods belongs to objects whereas Static Method belongs to a class.&lt;/P&gt;&lt;P&gt;&amp;gt;for Static methods (or static attributes) memory allocated only once i.e we can assign or change the values but the memory location will be same where as for Instance Method whenever we are assigning new values , different memory is allocating.&lt;/P&gt;&lt;P&gt;&amp;gt;we can't access Instance Method or Instance Attributes inside static method, whereas we can access static method inside instance methods.&lt;/P&gt;&lt;P&gt;&amp;gt;syntax for calling instance method:&lt;/P&gt;&lt;P&gt;DATA : OBJ TYPE REF TO (class_name). &lt;/P&gt;&lt;P&gt;            CREATE OBJECT OBJ.&lt;/P&gt;&lt;P&gt;            CALL METHOD OBJ-&amp;gt;(method name).&lt;/P&gt;&lt;P&gt;&amp;gt;syntax for calling static method:&lt;/P&gt;&lt;P&gt;(CLASS NAME)=&amp;gt;(METHOD NAME).&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;REPORT ZVAR_CLASS2.&lt;BR /&gt;&lt;BR /&gt;CLASS ABC DEFINITION.&lt;BR /&gt;PUBLIC SECTION.&lt;BR /&gt; METHODS : ADD. "INSTANCE METHOD&lt;BR /&gt; CLASS-METHODS : SUB. "STATIC METHOD&lt;BR /&gt;&lt;BR /&gt; DATA : N1 TYPE I,&lt;BR /&gt;            N2 TYPE I,&lt;BR /&gt;            IOP TYPE I. "INSTANCE ATTRIBUTES&lt;BR /&gt;&lt;BR /&gt; CLASS-DATA : M1 TYPE I,&lt;BR /&gt;                         M2 TYPE I,&lt;BR /&gt;                         SOP TYPE I. "STATIC ATTRIBUTES&lt;BR /&gt;ENDCLASS.&lt;BR /&gt;&lt;BR /&gt;CLASS ABC IMPLEMENTATION.&lt;BR /&gt;&lt;BR /&gt; METHOD ADD.&lt;BR /&gt; N1 = 25.&lt;BR /&gt; N2 = 50.&lt;BR /&gt; IOP = N1 + N2.&lt;BR /&gt; WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'OUTPUT IS:' , IOP.&lt;BR /&gt;ENDMETHOD.&lt;BR /&gt;&lt;BR /&gt; METHOD SUB.&lt;BR /&gt; M1 = 105.&lt;BR /&gt; M2 = 95.&lt;BR /&gt; SOP = M1 + M2.&lt;BR /&gt; WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'OUTPUT IS:' , SOP.&lt;BR /&gt; ENDMETHOD.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;START-OF-SELECTION.&lt;BR /&gt;"CALLING STATIC METHOD.&lt;BR /&gt;ABC=&amp;gt;SUB( ).&lt;BR /&gt;&lt;BR /&gt;"CALLING INSTANCE METHOD.&lt;BR /&gt;DATA : OBJ TYPE REF TO ABC.&lt;BR /&gt;CREATE OBJECT OBJ.&lt;BR /&gt;OBJ-&amp;gt;ADD( ).&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varun Shukla.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 14:05:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575425#M860672</guid>
      <dc:creator>former_member702605</dc:creator>
      <dc:date>2020-09-14T14:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575426#M860673</link>
      <description>&lt;P&gt;Thank you  for your valuable information.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 16:23:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/3575426#M860673</guid>
      <dc:creator>former_member861245</dc:creator>
      <dc:date>2023-06-27T16:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/13648101#M2027319</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for explaining the concepts in simple and easy way to understand.&lt;/P&gt;&lt;P&gt;Please confirm&lt;/P&gt;&lt;P&gt;Instance and static attribute keyword is &lt;STRONG&gt;Data and class-data &lt;/STRONG&gt;respectively.&lt;/P&gt;&lt;P&gt;Methods of instance and static keyword is &lt;STRONG&gt;methods and class-methods&amp;nbsp;&lt;/STRONG&gt;respectively.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2024 05:58:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/13648101#M2027319</guid>
      <dc:creator>Privete_member__904393</dc:creator>
      <dc:date>2024-03-25T05:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Difference b/w static and instance method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/13774459#M2029425</link>
      <description>&lt;P&gt;It is actually helpful! Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jul 2024 08:14:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-b-w-static-and-instance-method/m-p/13774459#M2029425</guid>
      <dc:creator>StevenNguyen</dc:creator>
      <dc:date>2024-07-28T08:14:44Z</dc:date>
    </item>
  </channel>
</rss>

