<?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: hi all in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712557#M628883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rocky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take a look at some of the examples in transaction DWDM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Graham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2007 05:34:03 GMT</pubDate>
    <dc:creator>GrahamRobbo</dc:creator>
    <dc:date>2007-08-14T05:34:03Z</dc:date>
    <item>
      <title>hi all</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712554#M628880</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;is it possible to write interective report using oops concept??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also, i would like to know where (for which type of programming) oops method i.e.  class, method, and objects are used???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where oops type of coding is done???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;urgent pl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;P&gt;rocky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 10:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712554#M628880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-13T10:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: hi all</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712555#M628881</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;Look this Wiki page:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="https://wiki.sdn.sap.com/wiki/display/Snippets/ABAP&lt;EM&gt;Objects&lt;/EM&gt;-&lt;EM&gt;Creating&lt;/EM&gt;your&lt;EM&gt;First&lt;/EM&gt;Local+Class"&amp;gt;ABAP Objects - Creating your First Local Class&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcelo Ramos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2007 11:37:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712555#M628881</guid>
      <dc:creator>marcelo_ramos1</dc:creator>
      <dc:date>2007-08-13T11:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: hi all</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712556#M628882</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;Object Oriented prg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A programming technique in which solutions reflect real world objects&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are objects ?&lt;/P&gt;&lt;P&gt;An object is an instantiation of a class. E.g. If &amp;#147;Animal&amp;#148; is a class, A cat &lt;/P&gt;&lt;P&gt;can be an object of that class .&lt;/P&gt;&lt;P&gt;With respect to code, Object refers to a set of services ( methods / &lt;/P&gt;&lt;P&gt;attributes ) and can contain data &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are classes ?&lt;/P&gt;&lt;P&gt;A class defines the properties of an object. A class can be instantiated &lt;/P&gt;&lt;P&gt;as many number of times &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Advantages of Object Orientated approach&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Easier to understand when the system is complex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Easy to make changes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Encapsulation - Can restrict the visibility of the data ( Restrict the access to the data )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Polymorphism - Identically named methods behave differently in different classes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inheritance - You can use an existing class to define a new class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Polymorphism and inheritance lead to code reuse&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look at these good links for OO ABAP-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt" target="test_blank"&gt;http://www.esnips.com/doc/375fff1b-5a62-444d-8ec1-55508c308b17/prefinalppt.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf" target="test_blank"&gt;http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt" target="test_blank"&gt;http://www.esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/" target="test_blank"&gt;http://www.allsaplinks.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/" target="test_blank"&gt;http://www.sap-img.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/" target="test_blank"&gt;http://www.sapgenie.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com" target="test_blank"&gt;http://help.sap.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com" target="test_blank"&gt;http://www.sapgenie.com&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/controls/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/controls/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf" target="test_blank"&gt;http://www.esnips.com/doc/2c76dc57-e74a-4539-a20e-29383317e804/OO-abap.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf" target="test_blank"&gt;http://www.esnips.com/doc/0ef39d4b-586a-4637-abbb-e4f69d2d9307/SAP-CONTROLS-WORKSHOP.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/index.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/ce/b518b6513611d194a50000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/OO/" target="test_blank"&gt;http://www.sapgenie.com/abap/OO/&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;P&gt;&lt;/P&gt;&lt;P&gt;if it helped, you can acknowledge the same by rewarding &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;swati&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 04:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712556#M628882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-14T04:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: hi all</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712557#M628883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rocky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take a look at some of the examples in transaction DWDM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Graham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2007 05:34:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712557#M628883</guid>
      <dc:creator>GrahamRobbo</dc:creator>
      <dc:date>2007-08-14T05:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: hi all</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712558#M628884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now SAP is shifting towards object oriented paradigm.(u will find ALV is now being implemented using class based concepts)&lt;/P&gt;&lt;P&gt;u can create local create as well as global class .&lt;/P&gt;&lt;P&gt;global classes are created in CLASS BUILDER.&lt;/P&gt;&lt;P&gt;for local class first u need to define and and then implement the class in your report .&lt;/P&gt;&lt;P&gt;GLOBAL CLASSES are visible everywhere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a class is composed of attriburts and methods.&lt;/P&gt;&lt;P&gt;attributes and methds are two types&lt;/P&gt;&lt;P&gt;instance and static(class).&lt;/P&gt;&lt;P&gt;static(class ) attributes are shared by all of the objects of the class.&lt;/P&gt;&lt;P&gt;static method can be called without instanciating the class i.e. without creating objects of class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for calling instance methods first create instance of that class.&lt;/P&gt;&lt;P&gt; in ABAP objects  you can not use internal tables with header line .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Aug 2007 14:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi-all/m-p/2712558#M628884</guid>
      <dc:creator>tushar_shukla</dc:creator>
      <dc:date>2007-08-18T14:29:34Z</dc:date>
    </item>
  </channel>
</rss>

