<?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: what's the difference between FM and Method? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111121#M106201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Slam,&lt;/P&gt;&lt;P&gt;Methods are used when you want to add additional functionalities in the ALV ouput.For example,adding a button on the status bar.&lt;/P&gt;&lt;P&gt;FM is used only for standard display and is always preferable when you do not really want any additional functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Oct 2005 09:13:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-26T09:13:23Z</dc:date>
    <item>
      <title>what's the difference between FM and Method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111120#M106200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We can layout a list by using FM (reuse_alv_grid_display) or Method cl_gui_alv_grid. &lt;/P&gt;&lt;P&gt;can anybody tell me the difference?Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:08:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111120#M106200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T09:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: what's the difference between FM and Method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111121#M106201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Slam,&lt;/P&gt;&lt;P&gt;Methods are used when you want to add additional functionalities in the ALV ouput.For example,adding a button on the status bar.&lt;/P&gt;&lt;P&gt;FM is used only for standard display and is always preferable when you do not really want any additional functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sandip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111121#M106201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T09:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: what's the difference between FM and Method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111122#M106202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Slam,&lt;/P&gt;&lt;P&gt;   Functionally speaking they both have the same functionality. The only difference being, the way each of them do it. The Method cl_gui_alv_grid uses object oriented concepts whereas FM (reuse_alv_grid_display) uses a more procedural oriented approach.&lt;/P&gt;&lt;P&gt;HOwever, you can use any one of them irrespective of your style of coding(Procedural or Object oriented).&lt;/P&gt;&lt;P&gt;The method cl_gui_alv_grid will have more options, when compared to the FM , as it is released later than the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi Kanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:15:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111122#M106202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T09:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: what's the difference between FM and Method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111123#M106203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Slam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Function modules&amp;lt;/b&amp;gt; are procedures that are defined in function groups (special ABAP programs with type F) and can be called from any ABAP program. Function groups act as containers for function modules that logically belong together. You create function groups and function modules in the ABAP Workbench using the  Function Builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function modules allow you to encapsulate and reuse global functions in the R/3 System. They are stored in a central library. The R/3 System contains a wide range of predefined function modules that you can call from any ABAP program. Function modules also play an important role in database updates and in remote communications between R/3 Systems or between an R/3 System and a non-SAP system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope u understood.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Ruthra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:21:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111123#M106203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T09:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: what's the difference between FM and Method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111124#M106204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Slam &lt;/P&gt;&lt;P&gt;I think class frameowork for alv grid control is more powerful than the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see some documentation about ALV GRID CONTROL here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/22/a3f601d2fe11d2b467006094192fe3/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/22/a3f601d2fe11d2b467006094192fe3/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;P&gt;enzo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:35:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111124#M106204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T09:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: what's the difference between FM and Method?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111125#M106205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot~&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Oct 2005 09:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-s-the-difference-between-fm-and-method/m-p/1111125#M106205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-26T09:37:51Z</dc:date>
    </item>
  </channel>
</rss>

