<?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 Object . in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877261#M50899</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'll try this . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can tell me what is the reason for this order ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Feb 2005 17:15:54 GMT</pubDate>
    <dc:creator>herzelhaimharel_gilor</dc:creator>
    <dc:date>2005-02-01T17:15:54Z</dc:date>
    <item>
      <title>Abap Object .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877259#M50897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks , &lt;/P&gt;&lt;P&gt;i'm writing a program which contain one class and it's implemetation . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i choose to put the code that related to the(Definition and implementation )  class in INCLUDE file  , so that my program looks like this : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report repname . &lt;/P&gt;&lt;P&gt; include class_stuff. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: cref type ref to class_struct , &lt;/P&gt;&lt;P&gt;       ....&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 OBJECT  cref . &lt;/P&gt;&lt;P&gt;  ...&lt;/P&gt;&lt;P&gt;  cref-&amp;gt;meth(var1 = val1 var2 = val2 .... ) . &lt;/P&gt;&lt;P&gt;  .... &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i try to execute the program it doesn't run properly , i wachted closely with the debugger and i noticed that after the INCLUDE class_stuff statement it's terminate . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can someone know how to explain this situation and how to avoid from short execution of the program ? &lt;/P&gt;&lt;P&gt;is it possible to define local class inside include ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Feb 2005 16:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877259#M50897</guid>
      <dc:creator>herzelhaimharel_gilor</dc:creator>
      <dc:date>2005-02-01T16:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: Abap Object .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877260#M50898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a start-of-selection statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put one after your "DATA" statement and before your "CREATE OBJECT" statement.  Should work then.&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;Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Feb 2005 16:58:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877260#M50898</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-02-01T16:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Abap Object .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877261#M50899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'll try this . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can tell me what is the reason for this order ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Feb 2005 17:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877261#M50899</guid>
      <dc:creator>herzelhaimharel_gilor</dc:creator>
      <dc:date>2005-02-01T17:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: Abap Object .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877262#M50900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure why its like that, but if you put your implementations at the end of the program, then you don't need the start-of-selection statement.  Kinda weird.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Feb 2005 17:24:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-object/m-p/877262#M50900</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-02-01T17:24:53Z</dc:date>
    </item>
  </channel>
</rss>

