<?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 [abap] regarding oops(simple program need help) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-regarding-oops-simple-program-need-help/m-p/3116091#M739962</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;Hello&amp;lt;username&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;date&amp;gt; &amp;lt;time&amp;gt;&lt;/P&gt;&lt;P&gt;"welcome to sap"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I want this as my output in my program and please bring this output form oops program, need as early as possible please.&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 Dec 2007 22:04:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-05T22:04:42Z</dc:date>
    <item>
      <title>[abap] regarding oops(simple program need help)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-regarding-oops-simple-program-need-help/m-p/3116091#M739962</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;Hello&amp;lt;username&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;date&amp;gt; &amp;lt;time&amp;gt;&lt;/P&gt;&lt;P&gt;"welcome to sap"&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;I want this as my output in my program and please bring this output form oops program, need as early as possible please.&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 Dec 2007 22:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-regarding-oops-simple-program-need-help/m-p/3116091#M739962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-05T22:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: [abap] regarding oops(simple program need help)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-regarding-oops-simple-program-need-help/m-p/3116092#M739963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WRITE: / 'Hello ', SY-UNAME.
WRITE: / 'Date:', SY-DATUM, SY-UZEIT.
WRITE / 'welcome to sap'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can write the above code in report or class &amp;amp; method.&lt;/P&gt;&lt;P&gt;If you are writing in method, then call the class &amp;amp; method in your report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;i&amp;gt;*Reward each useful answer&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;Raja T&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Raja Thangamani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 22:12:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-regarding-oops-simple-program-need-help/m-p/3116092#M739963</guid>
      <dc:creator>raja_thangamani</dc:creator>
      <dc:date>2007-12-05T22:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: [abap] regarding oops(simple program need help)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-regarding-oops-simple-program-need-help/m-p/3116093#M739964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here it is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CLASS greatings DEFINITION.

  PUBLIC SECTION.

   METHODS greatings.

  PRIVATE SECTION.

   METHODS: say_hello,
               tell_date,
               welcome.
ENDCLASS.

CLASS greatings IMPLEMENTATION.

 METHOD greatings.

   me-&amp;gt;say_hello( ).
   me-&amp;gt;tell_date( ).
   me-&amp;gt;welcome( ).

 ENDMETHOD.

 METHOD say_hello.

  WRITE: / 'Hello ', SY-UNAME.

 ENDMETHOD.

 METHOD tell_date.

  WRITE: / 'Date:', SY-DATUM, SY-UZEIT.

 ENDMETHOD.

 METHOD welcome.

  WRITE / 'welcome to sap'.

 ENDMETHOD.

ENDCLASS

START-OF-SELECTION.

  DATA: classObject TYPE REF TO greatings.

  CREATE OBJECT classObject.

  classObject-&amp;gt;greatings( ).
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Roby.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Dec 2007 02:20:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-regarding-oops-simple-program-need-help/m-p/3116093#M739964</guid>
      <dc:creator>former_member199581</dc:creator>
      <dc:date>2007-12-06T02:20:39Z</dc:date>
    </item>
  </channel>
</rss>

