<?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: Class in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404296#M195306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should simply look at one of the BC&lt;STRONG&gt;EDIT&lt;/STRONG&gt; programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create the object for the class&lt;/P&gt;&lt;P&gt;2. Call the method of the class using the object created. You can use the pattern button of the ABAP Editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a example.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="177080"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Jul 2006 12:07:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-18T12:07:47Z</dc:date>
    <item>
      <title>Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404295#M195305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I am new to Object orientedABAP.&lt;/P&gt;&lt;P&gt;Can any body tell me how to call a built-in class and method in to my ABAP report with some example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:01:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404295#M195305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404296#M195306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should simply look at one of the BC&lt;STRONG&gt;EDIT&lt;/STRONG&gt; programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create the object for the class&lt;/P&gt;&lt;P&gt;2. Call the method of the class using the object created. You can use the pattern button of the ABAP Editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a example.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="177080"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note : Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:07:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404296#M195306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404297#M195307</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;  Tcode -&amp;gt; SE24. Give the class name cl_http_client-&amp;gt;&lt;/P&gt;&lt;P&gt;Display. You will find a list of methods that are implemented in that class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call method cl_http_client=&amp;gt;create_by_url&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      url                = wf_string&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      client             = http_client&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      argument_not_found = 1&lt;/P&gt;&lt;P&gt;      plugin_not_active  = 2&lt;/P&gt;&lt;P&gt;      internal_error     = 3&lt;/P&gt;&lt;P&gt;      others             = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  create_by_url is a &amp;lt;b&amp;gt; STATIC &amp;lt;/b&amp;gt; method. So, we used =&amp;gt; as operator. If we want to access &amp;lt;b&amp;gt;INSTANCE&amp;lt;/b&amp;gt; methods, we have to use -&amp;gt; operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:09:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404297#M195307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404298#M195308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to pattern and choose ABAP object patterns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter object name,method name and class name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To call object &lt;/P&gt;&lt;P&gt;enter class name and object name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:10:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404298#M195308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404299#M195309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ref : &lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/c3/225b5654f411d194a60000e8353423/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could find examples as well. In se38 also you could find it. or SE24 =&amp;gt; where used list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;TM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:11:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404299#M195309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404300#M195310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thanks.&lt;/P&gt;&lt;P&gt;Points are given.&lt;/P&gt;&lt;P&gt;Whare to create object for the class?&lt;/P&gt;&lt;P&gt;After creating object for that calss we need to call that method by clicking Pattern button?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:12:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404300#M195310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404301#M195311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create the object/instance of the class in the program (report / dialog program) where you want to make that call. Even the CREATE OBJECT also can be done using the pattern&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once that is done use the instnace name and the class name to get the pattern of the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404301#M195311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404302#M195312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;In Object Oriented There is you 1st make local class define all the and then implement event in it than in PBO set handler. and the class is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classes describe objects. From a technical point of view, objects are runtime instances of a class. In theory, you can create any number of objects based on a single class. Each instance (object) of a class has a unique identity and its own set of values for its attributes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Object References&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:15:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404302#M195312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404303#M195313</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;Please check the transaction ABAPDOCU...wherein u will have all the things in the ABAP Objects folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else go to the transaction DWDM for demo of many examples. Take any example and look the source code. You will come to know.&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>Tue, 18 Jul 2006 12:17:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404303#M195313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404304#M195314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;This is how u can create object!!&lt;/P&gt;&lt;P&gt;DATA: container TYPE REF TO cl_gui_custom_container,&lt;/P&gt;&lt;P&gt;      tree TYPE REF TO cl_gui_simple_tree.&lt;/P&gt;&lt;P&gt; CREATE OBJECT container&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      container_name              = 'CUSTOM'.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e009(zvikalp).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT tree&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      parent                      = container&lt;/P&gt;&lt;P&gt;      node_selection_mode  = cl_gui_simple_tree=&amp;gt;node_sel_mode_single.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE e014(zvikalp).&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other than this u also need to register events. and define the calss in the top include as shown-&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_tree 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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ........                                                      *&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;CLASS lcl_tree DEFINITION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    CLASS-METHODS : catch_dbl FOR EVENT node_double_click OF&lt;/P&gt;&lt;P&gt;            cl_gui_simple_tree IMPORTING node_key.&lt;/P&gt;&lt;P&gt;ENDCLASS.&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_tree 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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ........                                                      *&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;CLASS lcl_tree IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD catch_dbl.&lt;/P&gt;&lt;P&gt;    g_event = 'NODE_DOUBLE_CLICK'.&lt;/P&gt;&lt;P&gt;    g_node_key = node_key.&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;Hope this helps u.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:20:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404304#M195314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404305#M195315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the Program  &amp;lt;b&amp;gt;" BCALV_GRID_VERIFY"&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will be helpfull for u.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jul 2006 12:23:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404305#M195315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404306#M195316</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;If it solves your problem award with maximu points.&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>Tue, 18 Jul 2006 12:25:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404306#M195316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T12:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Class</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404307#M195317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   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;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>Tue, 18 Jul 2006 13:22:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class/m-p/1404307#M195317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-18T13:22:26Z</dc:date>
    </item>
  </channel>
</rss>

