<?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 Transaction SE30 usage in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489703#M228014</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 am trying to analyse the CPU time taken for a "DO" statement using SE30.I want to compare this with the CPU time taken for a "WHILE" statement with the same logic.But when I execute for the "DO" statement multiple times I am getting different results each time which are highly varying.I am not sure which is the reliable or correct data.Hence could not further compare with the "WHILE" statement.&lt;/P&gt;&lt;P&gt;Cud someone suggest me how to compare performance with this?&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Aug 2006 13:00:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-08T13:00:52Z</dc:date>
    <item>
      <title>Transaction SE30 usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489703#M228014</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 am trying to analyse the CPU time taken for a "DO" statement using SE30.I want to compare this with the CPU time taken for a "WHILE" statement with the same logic.But when I execute for the "DO" statement multiple times I am getting different results each time which are highly varying.I am not sure which is the reliable or correct data.Hence could not further compare with the "WHILE" statement.&lt;/P&gt;&lt;P&gt;Cud someone suggest me how to compare performance with this?&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 13:00:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489703#M228014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T13:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction SE30 usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489704#M228015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;v_time1 = sy-uzeit.

do.

enddo.

v_time2 = sy-uzeit.

dif = v_time2 - v_tim1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 13:04:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489704#M228015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T13:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction SE30 usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489705#M228016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi hema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I am getting different results each time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is very much normal.&lt;/P&gt;&lt;P&gt;bcos the speed very much depends&lt;/P&gt;&lt;P&gt;upon the load on the server, at that particular point of time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. We can also measure in another way, programmatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.&lt;/P&gt;&lt;P&gt; GET TIME. "- for refreshing the time value.&lt;/P&gt;&lt;P&gt;   T1 =  SY-UZEIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   DO.&lt;/P&gt;&lt;P&gt;   *--- CODE&lt;/P&gt;&lt;P&gt;   ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   GET TIME. "- again for refreshing the time value.&lt;/P&gt;&lt;P&gt;   T2 =  SY-UZEIT.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;   diff = T2 - T1. "GET DIFF IN SECONDS.&lt;/P&gt;&lt;P&gt;   WRITE DIFF.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 13:08:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489705#M228016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T13:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction SE30 usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489706#M228017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the best way to compare is trigger both the pgms at the same time and then check the cpu times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 13:13:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489706#M228017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-08T13:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction SE30 usage</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489707#M228018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use statement GET RUN TIME in the program to get runtime of individual statement processing times instead of SE30.&lt;/P&gt;&lt;P&gt;Get run time also returns different times, take average&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: rt1 type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get run time field rt1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do 100 times.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get run time field rt1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ rt1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Aug 2006 13:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-se30-usage/m-p/1489707#M228018</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-08-08T13:33:32Z</dc:date>
    </item>
  </channel>
</rss>

