<?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: Performance Comparison between Inline Code and Forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318102#M1225878</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Please check the report RSHOWTIM (SE38), execute and navigate for each option of ABAP Objects Performance Example.&lt;/P&gt;&lt;P&gt;  Each option consist of comparations, sometimes the performance difference is irrelevant, in others cases must represents a huge performance lack.&lt;/P&gt;&lt;P&gt;  Since you are new in ABAP context, please evaluate this options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  About FORM x INLINE: It's a good practice to separate your code into form's (or function module) to create a clean code, easy for maintenance, documentation and reusability. It not represent benefits for performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando Da Ró&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Mar 2009 21:12:34 GMT</pubDate>
    <dc:creator>former_member182114</dc:creator>
    <dc:date>2009-03-16T21:12:34Z</dc:date>
    <item>
      <title>Performance Comparison between Inline Code and Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318099#M1225875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A colleague has suggested that modularising code into Forms, rather than using inline code will cause a performance hit because of the required PERFORM statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming this is not being done in a ridiculously tight loop is there any significant performance hit with modularisation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the same subject are there any reference books which explain in microscopic detail the "runtime" system of SAP, e.g. explaining (probably implicitly) the difference in performance between the two techniques.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I come from a traditional technical background so I know all about stack based languages, interpreters versus compilers,  demand paging, page tables etc.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 17:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318099#M1225875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T17:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Comparison between Inline Code and Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318100#M1225876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Welcome to SCN!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Modularization of Procedural ABAP Code|&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1238031"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 19:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318100#M1225876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T19:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Comparison between Inline Code and Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318101#M1225877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should modularisation as always in programming, but in ABAP you should not write&lt;/P&gt;&lt;P&gt;too small units, there is no compiler which creates incline code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Overhead of all modularization units is rather small.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORMs are useful fpr small reports, but outdated ABAP OO is the way to code right now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 15:54:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318101#M1225877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T15:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Comparison between Inline Code and Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318102#M1225878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Please check the report RSHOWTIM (SE38), execute and navigate for each option of ABAP Objects Performance Example.&lt;/P&gt;&lt;P&gt;  Each option consist of comparations, sometimes the performance difference is irrelevant, in others cases must represents a huge performance lack.&lt;/P&gt;&lt;P&gt;  Since you are new in ABAP context, please evaluate this options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  About FORM x INLINE: It's a good practice to separate your code into form's (or function module) to create a clean code, easy for maintenance, documentation and reusability. It not represent benefits for performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fernando Da Ró&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 21:12:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performance-comparison-between-inline-code-and-forms/m-p/5318102#M1225878</guid>
      <dc:creator>former_member182114</dc:creator>
      <dc:date>2009-03-16T21:12:34Z</dc:date>
    </item>
  </channel>
</rss>

