<?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: ABAP OOPs concept in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043544#M1968118</link>
    <description>&lt;P&gt;Hi Afreen,&lt;/P&gt;&lt;P&gt;Looks like you are mixing up two concepts that have nothing to do with each other.&lt;/P&gt;&lt;P&gt;- Function Modules belong to the 'classic' ABAP, also sometimes referred to as 'Procedural Programming Model'. This has nothing to do with Object Orientation; it came before that.&lt;/P&gt;&lt;P&gt;- Classes are at the center of the ABAP OO Model. There are no Function Modules in ABAP OO; therefore the way you ask your question actually does not make sense. There are no F'n Mods in Classes.&lt;/P&gt;&lt;P&gt;Of course, and that's what is probably confusing you, both models coexist next to each other. That is because lots of older code (still in production) is written using Function Modules, and there is still some use for them today. Whereas (almost) all the newer code is written using OO.&lt;/P&gt;&lt;P&gt;For deeper understanding of OO, please follow Satish's advise.&lt;/P&gt;&lt;P&gt;Hope that clarifies it a bit,&lt;BR /&gt;MIke&lt;/P&gt;</description>
    <pubDate>Thu, 24 Oct 2019 18:25:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2019-10-24T18:25:46Z</dc:date>
    <item>
      <title>ABAP OOPs concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043541#M1968115</link>
      <description>&lt;P&gt;Is the core class contains public/private/protected Function Modules in it or all the function modules are public?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 10:02:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043541#M1968115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-10-24T10:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOPs concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043542#M1968116</link>
      <description>&lt;P&gt;I think you mean Methods and not Function Modules as your title reads "ABAP OOPs Concept". Methods can be defined under any of the sections; Public, Private and Protected. This is called the visibility sections. Refer to &lt;A href="https://help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abenclass_visibility.htm"&gt;https://help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abenclass_visibility.htm&lt;/A&gt; to know more about the visibility.&lt;/P&gt;&lt;P&gt;Most methods are defined under Public Section, but for certain requirements methods can be defined under Private and Protected as well.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 11:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043542#M1968116</guid>
      <dc:creator>former_member627573</dc:creator>
      <dc:date>2019-10-24T11:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOPs concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043543#M1968117</link>
      <description>&lt;P&gt;Hello &lt;A href="https://answers.sap.com/users/893938/afreenmasarath.html"&gt;afreen masarath&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;They are Methods and yes a Class can have all three types (Public/Private/Protected) of methods depending on the business scenario.&lt;/P&gt;&lt;P&gt;When you want a Method to be used by all the inherited classes you can declare as Public methods else we go for other two types.&lt;/P&gt;&lt;P&gt;Similar methods variables also holds the same differentiation. Recommend you to start with the basics of OOPS concepts, to start with you can follow the below Blog:&lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sap.com/2012/07/11/small-document-on-concepts-of-oo-abap-for-beginners/"&gt;BASICS_OOPS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regard!&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 12:48:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043543#M1968117</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2019-10-24T12:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP OOPs concept</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043544#M1968118</link>
      <description>&lt;P&gt;Hi Afreen,&lt;/P&gt;&lt;P&gt;Looks like you are mixing up two concepts that have nothing to do with each other.&lt;/P&gt;&lt;P&gt;- Function Modules belong to the 'classic' ABAP, also sometimes referred to as 'Procedural Programming Model'. This has nothing to do with Object Orientation; it came before that.&lt;/P&gt;&lt;P&gt;- Classes are at the center of the ABAP OO Model. There are no Function Modules in ABAP OO; therefore the way you ask your question actually does not make sense. There are no F'n Mods in Classes.&lt;/P&gt;&lt;P&gt;Of course, and that's what is probably confusing you, both models coexist next to each other. That is because lots of older code (still in production) is written using Function Modules, and there is still some use for them today. Whereas (almost) all the newer code is written using OO.&lt;/P&gt;&lt;P&gt;For deeper understanding of OO, please follow Satish's advise.&lt;/P&gt;&lt;P&gt;Hope that clarifies it a bit,&lt;BR /&gt;MIke&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2019 18:25:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-oops-concept/m-p/12043544#M1968118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-10-24T18:25:46Z</dc:date>
    </item>
  </channel>
</rss>

