<?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/3326859#M796884</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;INHERITING means inherit... means take the some properties of another class. &lt;/P&gt;&lt;P&gt;Example in real time: Suppose u have some properties of your father. This is Inheriting or Inheritance. &lt;/P&gt;&lt;P&gt;Your Father is Supper Class and you are sub class of your father.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Ranveer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jan 2008 05:32:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-29T05:32:19Z</dc:date>
    <item>
      <title>RE:ABAP objects</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3326856#M796881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does this statment mean (INHERITING).Can some one explain with a simple example(no technical terms).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS ship DEFINITION &lt;STRONG&gt;INHERITING&lt;/STRONG&gt; FROM vessel.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Alex.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 04:29:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3326856#M796881</guid>
      <dc:creator>alex_georgek</dc:creator>
      <dc:date>2008-01-29T04:29:35Z</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/3326857#M796882</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;inheriting means inheriting  all properties of baseclass to development class.here ship is development class and &lt;/P&gt;&lt;P&gt;vessel is base class.ship can use all attributes ,methods of vessel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the links.&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://www.beinsoft.com/articles/sap-tutorial-abap-objects.php" target="test_blank"&gt;http://www.beinsoft.com/articles/sap-tutorial-abap-objects.php&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geekinterview.com/question_details/13383" target="test_blank"&gt;http://www.geekinterview.com/question_details/13383&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erphome.net/pdf/tech/J06.pdf" target="test_blank"&gt;http://www.erphome.net/pdf/tech/J06.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&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>Tue, 29 Jan 2008 04:58:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3326857#M796882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T04:58: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/3326858#M796883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, the keyword INHERITING is used for the implementation of INHERITANCE in OO ABAP.&lt;/P&gt;&lt;P&gt;I think what you can do here is look into the concepts of object oriented programming, and then check out syntactically how it is implemented in OO ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this example, there is a Parent class (also known as the base class) called vessel.&lt;/P&gt;&lt;P&gt;Vessel consists of certain properties and functionalities common to all types of carrier vessels.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when you want a ship, you need certain functionalities and properties specific to a ship. Say, for example, the number of passengers it can accomodate.&lt;/P&gt;&lt;P&gt;But you would want to restrict your coding to incorporate only the specifics of the ship, but would want other properties to be 'derived' or obtained from the vessel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is when you use the concept of inheritance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another example:&lt;/P&gt;&lt;P&gt;Say you want to implement a series of figures, like a circle, rectangle, square and so on.&lt;/P&gt;&lt;P&gt;Basically you would maintain a 'FIGURE' class as a base, and keep the general properties there. For example 'colour' of the figure.&lt;/P&gt;&lt;P&gt;How you draw a square is different from how you draw a circle, so that specifics you would maintain in the class for SQUARE and for CIRCLE.&lt;/P&gt;&lt;P&gt;You would probably design that CIRCLE and SQUARE inherit from FIGURE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 05:01:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3326858#M796883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T05:01:33Z</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/3326859#M796884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;INHERITING means inherit... means take the some properties of another class. &lt;/P&gt;&lt;P&gt;Example in real time: Suppose u have some properties of your father. This is Inheriting or Inheritance. &lt;/P&gt;&lt;P&gt;Your Father is Supper Class and you are sub class of your father.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Ranveer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 05:32:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap-objects/m-p/3326859#M796884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T05:32:19Z</dc:date>
    </item>
  </channel>
</rss>

