<?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: definition deffered..? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365808#M1234728</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Apr 2009 08:39:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-02T08:39:05Z</dc:date>
    <item>
      <title>definition deffered..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365805#M1234725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi mates,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone pls tell what is use of class definition defferred and class load.??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Krish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 06:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365805#M1234725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T06:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: definition deffered..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365806#M1234726</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;one can refer to a class without defining the class before that point. But, the class has to be defined later on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program description: 	In this program , class C1 has an interface reference O2 declared with reference to class C2. But, before that, class C2 is not defined. It is defined later with a single public attribute , NUM .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This demonstrates the theme.&lt;/P&gt;&lt;P&gt;In the main section of the program, object : OBJ1 is created from class C1.&lt;/P&gt;&lt;P&gt;Then, an object is created from the reference variable O2 in class C1. Finally, the attribute num of that object is displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: &lt;/P&gt;&lt;P&gt;Dump	report ysubdel1.&lt;/P&gt;&lt;P&gt;CLASS C2 DEFINITION DEFERRED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS C1 DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    DATA O2 TYPE REF TO C2.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS C2 DEFINITION.&lt;/P&gt;&lt;P&gt;public section.&lt;/P&gt;&lt;P&gt; data : num type i value 5.&lt;/P&gt;&lt;P&gt;ENDCLASS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt; data : obj1 type ref to C1.&lt;/P&gt;&lt;P&gt;  CREATE OBJECT obj1.&lt;/P&gt;&lt;P&gt;  create object obj1-&amp;gt;o2.&lt;/P&gt;&lt;P&gt;  write:/5 obj1-&amp;gt;o2-&amp;gt;num .&lt;/P&gt;&lt;P&gt;Output	5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 06:46:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365806#M1234726</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T06:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: definition deffered..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365807#M1234727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;[Class Defered|http://help.sap.com/abapdocu/en/ABAPCLASS_DEFERRED.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Class Load is used to load the class from Global library into the program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check for f1 help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gurpreet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 06:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365807#M1234727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T06:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: definition deffered..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365808#M1234728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 08:39:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition-deffered/m-p/5365808#M1234728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T08:39:05Z</dc:date>
    </item>
  </channel>
</rss>

