<?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: Simple Class Example in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384418#M187313</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ha Rohini&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following Code for Simple Example of Creation of Class and Methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZIGA_ABAPOBJECTS_ASGN01                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report  ziga_abapobjects_asgn01                 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : p_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_material DEFINITION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class lcl_material definition.&lt;/P&gt;&lt;P&gt;  public section.&lt;/P&gt;&lt;P&gt;    data: v_matnr type mara-matnr.&lt;/P&gt;&lt;P&gt;    methods : constructor importing matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;              write_material_desc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  private section.&lt;/P&gt;&lt;P&gt;    data : v_maktx type makt-maktx.&lt;/P&gt;&lt;P&gt;    methods : get_material_description.&lt;/P&gt;&lt;P&gt;endclass.                    "lcl_material DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_material IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class lcl_material implementation.&lt;/P&gt;&lt;P&gt;  method get_material_description.&lt;/P&gt;&lt;P&gt;    clear v_maktx.&lt;/P&gt;&lt;P&gt;    select single maktx into v_maktx&lt;/P&gt;&lt;P&gt;                        from makt&lt;/P&gt;&lt;P&gt;                        where matnr = v_matnr and&lt;/P&gt;&lt;P&gt;                              spras = 'E'.&lt;/P&gt;&lt;P&gt;  endmethod.                    "get_material_description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  method constructor.&lt;/P&gt;&lt;P&gt;    clear v_matnr.&lt;/P&gt;&lt;P&gt;    v_matnr = matnr.&lt;/P&gt;&lt;P&gt;    call method get_material_description.&lt;/P&gt;&lt;P&gt;  endmethod.                    "constructor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  method write_material_desc.&lt;/P&gt;&lt;P&gt;    write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'Material Description :', v_maktx.&lt;/P&gt;&lt;P&gt;  endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endclass.                    "lcl_material IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : obj type ref to lcl_material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  create object obj exporting matnr = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call method obj-&amp;gt;write_material_desc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Jul 2006 09:18:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-05T09:18:53Z</dc:date>
    <item>
      <title>Simple Class Example</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384414#M187309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would someone give a very simple example how to create a Class that Adds two numbers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know the Transaction also to build the class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 03:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384414#M187309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T03:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Class Example</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384415#M187310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can build a Global class in transaction SE24.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 03:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384415#M187310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T03:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Class Example</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384416#M187311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use class in two ways.&lt;/P&gt;&lt;P&gt;1) Global Class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can be created in se24.Give the name of the class and short description and you will get into the class builder&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the attributes tab, give the two numbers as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a   Public  Instance  Type   I description&lt;/P&gt;&lt;P&gt;b   Public  Instance  Type   I description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the methods tab, Click on the constructor button to create the constructor method. You can click on the parameters tab to give the parameters for the method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give the parameters as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;param_a Importing Type I  description&lt;/P&gt;&lt;P&gt;param_b Importing Type I  description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now create a new method whose description is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add Instance Description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click on the method name to go into the editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the constructor method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just assign &lt;/P&gt;&lt;P&gt;a = param_a and &lt;/P&gt;&lt;P&gt;b = param_b&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the add method &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: sum type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum = a + b.&lt;/P&gt;&lt;P&gt;message i001(zmess) with sum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now save and activate the class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the main program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: obj type ref to ZMYCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;create object obj exporting param_a = 10&lt;/P&gt;&lt;P&gt;                            param_b = 20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method obj-&amp;gt;add.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will be the way to use classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Local classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just go through this document to have a better idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt" target="test_blank"&gt;http://esnips.com/doc/5c65b0dd-eddf-4512-8e32-ecd26735f0f2/prefinalppt.ppt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Close the thread once the problem is resolved.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 04:26:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384416#M187311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T04:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Class Example</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384417#M187312</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;Use he transaction SE24 to create a class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Enter a class name "ZCL_XXX" and press craete button&lt;/P&gt;&lt;P&gt;2. A dialog box will appear&lt;/P&gt;&lt;P&gt;3. Enter the description&lt;/P&gt;&lt;P&gt;4. Press Save button&lt;/P&gt;&lt;P&gt;5. Another dislog box will appear by asking you to enter the package name. Don't enter anything, Just press Local object.&lt;/P&gt;&lt;P&gt;6. Now it will take you to Class Builder.&lt;/P&gt;&lt;P&gt;7. Now you can create your own methods and write the code&lt;/P&gt;&lt;P&gt;8. Inorder to crate import and other parameters, place the cursor on the method and press the Parameters.&lt;/P&gt;&lt;P&gt;9. At last save and activate the class.&lt;/P&gt;&lt;P&gt;10. Now its ready for instantiating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope tis helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;Venkat Ramanan N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 04:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384417#M187312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T04:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Class Example</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384418#M187313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ha Rohini&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following Code for Simple Example of Creation of Class and Methods&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZIGA_ABAPOBJECTS_ASGN01                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report  ziga_abapobjects_asgn01                 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : p_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_material DEFINITION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class lcl_material definition.&lt;/P&gt;&lt;P&gt;  public section.&lt;/P&gt;&lt;P&gt;    data: v_matnr type mara-matnr.&lt;/P&gt;&lt;P&gt;    methods : constructor importing matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;              write_material_desc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  private section.&lt;/P&gt;&lt;P&gt;    data : v_maktx type makt-maktx.&lt;/P&gt;&lt;P&gt;    methods : get_material_description.&lt;/P&gt;&lt;P&gt;endclass.                    "lcl_material DEFINITION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS lcl_material IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class lcl_material implementation.&lt;/P&gt;&lt;P&gt;  method get_material_description.&lt;/P&gt;&lt;P&gt;    clear v_maktx.&lt;/P&gt;&lt;P&gt;    select single maktx into v_maktx&lt;/P&gt;&lt;P&gt;                        from makt&lt;/P&gt;&lt;P&gt;                        where matnr = v_matnr and&lt;/P&gt;&lt;P&gt;                              spras = 'E'.&lt;/P&gt;&lt;P&gt;  endmethod.                    "get_material_description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  method constructor.&lt;/P&gt;&lt;P&gt;    clear v_matnr.&lt;/P&gt;&lt;P&gt;    v_matnr = matnr.&lt;/P&gt;&lt;P&gt;    call method get_material_description.&lt;/P&gt;&lt;P&gt;  endmethod.                    "constructor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  method write_material_desc.&lt;/P&gt;&lt;P&gt;    write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'Material Description :', v_maktx.&lt;/P&gt;&lt;P&gt;  endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endclass.                    "lcl_material IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : obj type ref to lcl_material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  create object obj exporting matnr = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call method obj-&amp;gt;write_material_desc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 09:18:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384418#M187313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T09:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Simple Class Example</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384419#M187314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohini,&lt;/P&gt;&lt;P&gt;          Are you new to OO ABAP?&lt;/P&gt;&lt;P&gt;Then, have a look at these good links-&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;Please mark useful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanuja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Jul 2006 09:25:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/simple-class-example/m-p/1384419#M187314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-05T09:25:01Z</dc:date>
    </item>
  </channel>
</rss>

