<?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: RE:ABAP objects in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373585#M810056</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just go through this link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/OO/index.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Feb 2008 05:12:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-07T05:12:56Z</dc:date>
    <item>
      <title>RE:ABAP objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373581#M810052</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; Can any one explain with a simple example what you mean by &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class,subclass,superclass...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Alex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 10:04:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373581#M810052</guid>
      <dc:creator>alex_georgek</dc:creator>
      <dc:date>2008-02-06T10:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: RE:ABAP objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373582#M810053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If A is a subclass of B, then B is the superclass of A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A class is an encapsulation of a concept, perhaps some physical object like a vehicle, or a business object like a purchase order, or something more abstract like BW start routine.  A subclass is more specific than its superclass.  A superclass is more general than its subclasses.  ( In ABAP a class can have up to one superclass, though type OBJECT can be considered a superclass of all classes, except itself ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, you may have a class representing VEHICLES.  It could have two subclasses CAR and BICYCLE.  ( So VEHICLES would be the superclass of both CAR and BICYCLE ).  The class VEHICLES would have all the attributes and methods that apply to all kinds of vehicles - e.g. "source of power".  The CAR class would inherit all the VEHICLE attributes and methods, and have additional methods and attributes applicable only to cars - e.g. "number of doors".  Similarly for the BICYCLE, you might have "pedal_type".  Both CAR and BICYCLE would have "source of power", as they've inherited this from VEHICLES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 10:13:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373582#M810053</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-02-06T10:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: RE:ABAP objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373583#M810054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;  That is the concept called Inheritence in OO Programming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INHERITANCE&lt;/P&gt;&lt;P&gt;Inheritance is an implementation relationship between classes that allows a class, called a subclass, to inherit all components of another class, called a superclass. In ABAP Objects, adding INHERITING FROM to the class definition statement enables inheritance .&lt;/P&gt;&lt;P&gt;In a subclass you define additional components or redefine instance methods that were inherited from the superclass, but you can't remove inherited components. Therefore, a subclass is strongly coupled to its superclass just by containing all of the superclass's components. While a subclass knows its superclass, a superclass has no knowledge of its subclasses. Nevertheless, the semantic coupling is strong in both directions because changing a superclass automatically changes or even invalidates all of its subclasses.&lt;/P&gt;&lt;P&gt;While a subclass specializes a superclass by adding components or redefining methods, a superclass is a generalization of its subclasses. In fact, inheritance should be used to implement relationships between classes that can be described in terms of generalization and specialization. For example, if you compare a passenger_airplane class to a cargo_airplane class, you will find that many common features can be put into a general superclass, airplane.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you got something out of the explaination.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;theja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 14:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373583#M810054</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-06T14:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: RE:ABAP objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373584#M810055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/dd/4049c40f4611d3b9380000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/dd/4049c40f4611d3b9380000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/1d/df5f54127111d3b9390000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/1d/df5f54127111d3b9390000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html" target="test_blank"&gt;http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html&lt;/A&gt;&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;regards.&lt;/P&gt;&lt;P&gt;sowjanya.b&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 04:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373584#M810055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T04:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: RE:ABAP objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373585#M810056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just go through this link,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/abap/OO/index.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 05:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3373585#M810056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-07T05:12:56Z</dc:date>
    </item>
  </channel>
</rss>

