<?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: class and method in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429643#M823829</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;class is group of variables and group of methods.&lt;/P&gt;&lt;P&gt;is that is one variable or more variables and one or more methods..with out single variable and with out single method also possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in method we do the processing logic.&lt;/P&gt;&lt;P&gt;we call that method where ever we want that logic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Feb 2008 12:17:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-24T12:17:26Z</dc:date>
    <item>
      <title>class and method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429640#M823826</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;what are class and method&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 10:13:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429640#M823826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T10:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: class and method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429641#M823827</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;     class is nothing but combination of data and function.. These functionsor methods perform the operation on data of the object.. Method  will change the state of the object..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; look this link once..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;A href="http://abapprogramming.blogspot.com/2007/10/oops-abap-15.html" target="test_blank"&gt;http://abapprogramming.blogspot.com/2007/10/oops-abap-15.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 10:58:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429641#M823827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T10:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: class and method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429642#M823828</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;Classes are templates for objects. Conversely, you can say that the type of an object is the same as its class. A class is an abstract description of an object. You could say that it is a set of instructions for building an object. The attributes of objects are defined by the components of the class, which describe the state and behavior of objects.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classes in ABAP Objects can be declared either globally or locally. You define global classes and interfaces in the Class Builder (Transaction SE24) in the ABAP Workbench. They are stored centrally in class pools in the class library in the Repository. All ABAP programs have access to these global classes. Local classes are defined within an ABAP program. Local classes and interfaces can only be used in the program in which they are defined. When you use a class in an ABAP program, the system first searches for a local class with the specified name. If it does not find one, it then looks for a global class. Apart from the visibility question, there is no difference between using a global class and using a local class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is, however, a significant difference in the way that local and global classes are designed. If you are defining a local class that is only used in a single program, it is usually sufficient to define the outwardly visible components so that it fits into that program. Global classes, on the other hand, must be able to be used anywhere. This means that certain restrictions apply when you define the interface of a global class, since the system must be able to guarantee that any program using an object of a global class can recognize the data type of each interface parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure of a Class&lt;/P&gt;&lt;P&gt;The following statements define the structure of a class:&lt;/P&gt;&lt;P&gt;&amp;#149;        A class contains components&lt;/P&gt;&lt;P&gt;&amp;#149;        Each component is assigned to a visibility section&lt;/P&gt;&lt;P&gt;&amp;#149;        Classes implement methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this helps, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 12:13:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429642#M823828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T12:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: class and method</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429643#M823829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;class is group of variables and group of methods.&lt;/P&gt;&lt;P&gt;is that is one variable or more variables and one or more methods..with out single variable and with out single method also possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in method we do the processing logic.&lt;/P&gt;&lt;P&gt;we call that method where ever we want that logic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Feb 2008 12:17:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-and-method/m-p/3429643#M823829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-24T12:17:26Z</dc:date>
    </item>
  </channel>
</rss>

