<?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: help in OO in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016592#M959716</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Sriram Chandran    ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes this is what i wont, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; to convert this bit alone into OO.&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;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jun 2008 20:05:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-16T20:05:52Z</dc:date>
    <item>
      <title>help in OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016589#M959713</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;i have this code and i have to use it in many FM (same function group) there is a way to use it in object oriented ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i new to abap object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PERFORM qua TABLES periods USING sy-datum.
  READ TABLE periods INTO wa_periods INDEX 1.
  PERFORM quar TABLES periods USING wa_periods-low.
  READ TABLE periods INTO wa_periods INDEX 8.
  PERFORM quar TABLES periods USING wa_periods-low.
  SORT periods BY low.
  DELETE ADJACENT DUPLICATES FROM periods.


  LOOP AT periods ASSIGNING &amp;lt;fs_periods&amp;gt;.
    IF sy-tabix &amp;lt; 8.
      APPEND : &amp;lt;fs_periods&amp;gt; TO periods1.
    ENDIF.
    IF sy-tabix &amp;gt; 9.
      APPEND : &amp;lt;fs_periods&amp;gt; TO periods2.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 14:59:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016589#M959713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T14:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: help in OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016590#M959714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can create method with internal table periods as your input parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you just want to convert this bit alone into OO?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 15:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016590#M959714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T15:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: help in OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016591#M959715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i wouldn't bother with all that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would just create a new function module with that code. Add the appropriate IMPORTING/EXPORTING/TABLES parameters and you're ready to go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise, you can just create a new INCLUDE program and store the code there. Then, whenever you need to call that code, just put &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
INCLUDE zyour_include_name
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it doesn't &lt;STRONG&gt;have&lt;/STRONG&gt; to be difficult.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 17:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016591#M959715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T17:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: help in OO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016592#M959716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Sriram Chandran    ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes this is what i wont, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; to convert this bit alone into OO.&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;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 20:05:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-in-oo/m-p/4016592#M959716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T20:05:52Z</dc:date>
    </item>
  </channel>
</rss>

