<?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: SE30 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/se30/m-p/3709128#M893006</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Gross time&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The total time required for a call. This includes the runtime of all modularization units and ABAP statements called by the subject.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Net time&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The net time is the gross time less the time required for modularization units (MODULE, PERFORM, CALL FUNCTION, CALL SCREEN, CALL TRANSACTION, CALL METHOD, CALL DIALOG, SUBMIT), and for the ABAP statements listed separately. For statements such as APPEND, the gross time is the same as the net time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the gross and net runtimes of a call are different, the call must either contain further calls or modularization units. The Statement Hit List allows you to find out the components that belong to a particular call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Net time = gross time - time taken by the modularization units(in your program)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Example&lt;/U&gt; :&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function ...&lt;/P&gt;&lt;P&gt;*******&lt;/P&gt;&lt;P&gt;here the gross time is time taken by the whole program.&lt;/P&gt;&lt;P&gt;net time is the time taken by the select and read which does not fall under any of the modularization unit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : It also tells the excessive or unnecessary use of modularization units. and User-specific functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Yes&lt;/STRONG&gt;, they both are measured in ms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 May 2008 09:01:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-07T09:01:21Z</dc:date>
    <item>
      <title>SE30</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/se30/m-p/3709126#M893004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the difference between the columns "Net" and "Gross" on the Runtime Analysis Evaluation Screen of the transaction SE30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also are the values in these columns written in microseconds unit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ajay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ajay singh on May 7, 2008 10:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 08:49:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/se30/m-p/3709126#M893004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T08:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: SE30</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/se30/m-p/3709127#M893005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In microsecond is correct...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 08:55:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/se30/m-p/3709127#M893005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T08:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: SE30</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/se30/m-p/3709128#M893006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Gross time&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The total time required for a call. This includes the runtime of all modularization units and ABAP statements called by the subject.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Net time&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The net time is the gross time less the time required for modularization units (MODULE, PERFORM, CALL FUNCTION, CALL SCREEN, CALL TRANSACTION, CALL METHOD, CALL DIALOG, SUBMIT), and for the ABAP statements listed separately. For statements such as APPEND, the gross time is the same as the net time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the gross and net runtimes of a call are different, the call must either contain further calls or modularization units. The Statement Hit List allows you to find out the components that belong to a particular call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Net time = gross time - time taken by the modularization units(in your program)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Example&lt;/U&gt; :&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report ztest1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function ...&lt;/P&gt;&lt;P&gt;*******&lt;/P&gt;&lt;P&gt;here the gross time is time taken by the whole program.&lt;/P&gt;&lt;P&gt;net time is the time taken by the select and read which does not fall under any of the modularization unit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : It also tells the excessive or unnecessary use of modularization units. and User-specific functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Yes&lt;/STRONG&gt;, they both are measured in ms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 09:01:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/se30/m-p/3709128#M893006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T09:01:21Z</dc:date>
    </item>
  </channel>
</rss>

