<?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: how to do programing using OO-ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390430#M814102</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check in ABAPDOCU transaction. There are some examples programs available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also check here...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://saptechnical.com/Tutorials/OOPS/MainPage.htm" target="test_blank"&gt;http://saptechnical.com/Tutorials/OOPS/MainPage.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2008 10:39:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-12T10:39:36Z</dc:date>
    <item>
      <title>how to do programing using OO-ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390429#M814101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;  i am new to learn OO-ABAP , i have created a class having 4 methods , but now required guidance form u all in making a simple reports using that class nad methods of that .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   if some STD. simple examples avil. in SAP , plz tell me abt that .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390429#M814101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to do programing using OO-ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390430#M814102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check in ABAPDOCU transaction. There are some examples programs available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also check here...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://saptechnical.com/Tutorials/OOPS/MainPage.htm" target="test_blank"&gt;http://saptechnical.com/Tutorials/OOPS/MainPage.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:39:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390430#M814102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to do programing using OO-ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390431#M814103</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 C_COUNTER DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS: SET_COUNTER IMPORTING VALUE(SET_VALUE) TYPE I,&lt;/P&gt;&lt;P&gt;             INCREMENT_COUNTER,&lt;/P&gt;&lt;P&gt;             GET_COUNTER EXPORTING VALUE(GET_VALUE) TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PRIVATE SECTION.&lt;/P&gt;&lt;P&gt;    DATA COUNT TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS C_COUNTER IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD SET_COUNTER.&lt;/P&gt;&lt;P&gt;    COUNT = SET_VALUE.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD INCREMENT_COUNTER.&lt;/P&gt;&lt;P&gt;    ADD 1 TO COUNT.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD GET_COUNTER.&lt;/P&gt;&lt;P&gt;    GET_VALUE = COUNT.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The class C_COUNTER contains three public methods - SET_COUNTER, INCREMENT_COUNTER, and GET_COUNTER. Each of these works with the private integer field COUNT. Two of the methods have input and output parameters. These form the data interface of the class. The field COUNT is not outwardly visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use create object statement to create object of the following class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data cref1 type ref to C_counter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create object cref1.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this helps, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Runal Singh on Feb 12, 2008 4:11 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 10:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390431#M814103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T10:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to do programing using OO-ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390432#M814104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;  now i am refering examples given in ABAPDOCU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx for valueable replay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 04:22:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-programing-using-oo-abap/m-p/3390432#M814104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T04:22:29Z</dc:date>
    </item>
  </channel>
</rss>

