<?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: Constructor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851367#M1134560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Constructor is special method of class which initialize instance of  this classes when it created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details&lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/Constructor_(computer_science)" target="test_blank"&gt;http://en.wikipedia.org/wiki/Constructor_(computer_science)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Nov 2008 06:02:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-25T06:02:58Z</dc:date>
    <item>
      <title>Constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851365#M1134558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ABAP  oops experts, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain what is constructor in the oops language. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krish..........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 05:54:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851365#M1134558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T05:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851366#M1134559</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;Refer This Link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.samrathacks.com/2008/04/oops-class-constructor-abstract-class.html" target="test_blank"&gt;http://www.samrathacks.com/2008/04/oops-class-constructor-abstract-class.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ranga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 06:00:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851366#M1134559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T06:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851367#M1134560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Constructor is special method of class which initialize instance of  this classes when it created&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details&lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/Constructor_(computer_science)" target="test_blank"&gt;http://en.wikipedia.org/wiki/Constructor_(computer_science)&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 06:02:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851367#M1134560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T06:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851368#M1134561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Method CONSTRUCTOR   &lt;/P&gt;&lt;P&gt;The CONSTRUCTOR method *&lt;STRONG&gt;is used to default&lt;/STRONG&gt;* some member variables with class-specific values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample source text:    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;METHOD constructor .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD super-&amp;gt;constructor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  mv_table_name_for_alv_grid = 'SBRF142_ALV'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if_maintenance_brf~mv_smartform_name = 'BRF_VALUE_REQUEST_TABLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMETHOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Description:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all, the obligatory call of the CONSTRUCTOR method of the super-class takes place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the following names are set:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        Structure name for the ABAP List Viewer (ALV) grid that is used in transaction  BRF_OVERVIEW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This name is required for the method GET_TABLE_FOR_ALV_GRID. In turn, the method GET_TABLE_FOR_ALV_GRID is called by BRF_OVERVIEW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        Name of the smart form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This name is required for the print output (method PRINT).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not want to tackle the subject of history management right from the beginning, set the if_maintenance_brf~mv_history_available attribute in the method to false (in other words space). In doing so, you indicate that your maintenance class does not (yet) support history management.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 06:08:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851368#M1134561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T06:08:30Z</dc:date>
    </item>
    <item>
      <title>Re: Constructor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851369#M1134562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for provide helpfull information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krish....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 06:14:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/constructor/m-p/4851369#M1134562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T06:14:56Z</dc:date>
    </item>
  </channel>
</rss>

