<?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: Evaluate the total execution time in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803151#M1587328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Prakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The time you were referring to on the screen was RESPONSE TIME or INTERPRETATION TIME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish Kanteti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Mar 2011 06:59:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-24T06:59:36Z</dc:date>
    <item>
      <title>Evaluate the total execution time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803147#M1587324</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 need to find the total execution time taken upon executing a function module. I tried to output the system time in the start of the FM and at the end of the FM. But the time taken in execution in the DEV system could be lessthan 1 sec, which is not visible to evaluate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any one with an idea, please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish Kanteti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 06:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803147#M1587324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-24T06:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluate the total execution time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803148#M1587325</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;you can check the difference with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET RUN TIME FIELD f. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take both values before and after fm and you get the difference in µs.&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;Klaus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 06:21:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803148#M1587325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-24T06:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluate the total execution time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803149#M1587326</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;&lt;/P&gt;&lt;P&gt;You can check that in t.code - se37 itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Execute any Function Module in SE37 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Result Screen you can see the Run time in Micro Seconds&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;Prakash.k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 06:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803149#M1587326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-24T06:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluate the total execution time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803150#M1587327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA T TYPE I.
GET RUN TIME FIELD T.
WRITE: / 'Begin Runtime', T.
*Call FM
GET RUN TIME FIELD T.
WRITE: / 'End Runtime', T.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more details check the link below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/db994235c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/db994235c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 06:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803150#M1587327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-24T06:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Evaluate the total execution time</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803151#M1587328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Prakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The time you were referring to on the screen was RESPONSE TIME or INTERPRETATION TIME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish Kanteti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 06:59:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/evaluate-the-total-execution-time/m-p/7803151#M1587328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-24T06:59:36Z</dc:date>
    </item>
  </channel>
</rss>

