<?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: System Variable for Response Time? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250804#M1014675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not simply use SE30?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Aug 2008 15:26:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-11T15:26:48Z</dc:date>
    <item>
      <title>System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250801#M1014672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does anyone know if there exists a System Variable that shows me the response time of a Function?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to implement a performance Check of different functions and show a line Graph of the response Time. Any Hints would be highly appreciatet!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dennis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250801#M1014672</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T15:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250802#M1014673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a system variable, but you would need to do this measurement manually.  You can use the following to measure any runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: lr_runtime TYPE REF TO if_abap_runtime,
      lv_start TYPE i,
      lv_end TYPE i,
      lv_runtime TYPE i.

lr_runtime = cl_abap_runtime=&amp;gt;create_hr_timer( ).

lv_start = lr_runtime-&amp;gt;get_runtime( ).

* Do some processing
WAIT UP TO 5 SECONDS.

lv_end = lr_runtime-&amp;gt;get_runtime( ).

lv_runtime = ( lv_end - lv_start ) / 1000.

WRITE: / ' time per call in microseconds: ', lv_runtime.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:22:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250802#M1014673</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2008-08-11T15:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250803#M1014674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no there is no such a variable, because the measurement causes an overhead, i.e. time is only measured on demand, i.e. use command get runtime field start and ... stop, t = stop-start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And don't forget to repeat measurements, otherwise your measurements will cause only confusion. Graphics ... waste of time, better implement the improvement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:23:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250803#M1014674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T15:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250804#M1014675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not simply use SE30?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Aug 2008 15:26:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250804#M1014675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-11T15:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250805#M1014676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; I want to implement a performance Check of different functions &lt;/P&gt;&lt;P&gt;no so easy with SE30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And runtime measurements can be done in a loop, gives better results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 06:48:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250805#M1014676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T06:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250806#M1014677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The SAPGui has a response time indicator for the last interation with the app server.  I'm curious if there's a way of reading that, perhaps one of the gui/fe classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( Not useful for the original poster, I'll grant you ).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250806#M1014677</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-08-12T07:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250807#M1014678</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;Try this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: T type I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get Run Time Field T.&lt;/P&gt;&lt;P&gt;write:/ T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * from VBAK INTO table ITAB.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Get Run Time Field T.&lt;/P&gt;&lt;P&gt;write:/ T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:21:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250807#M1014678</guid>
      <dc:creator>former_member787646</dc:creator>
      <dc:date>2008-08-12T07:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250808#M1014679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;interesting so much confusion in such a simple question!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Rich&lt;/P&gt;&lt;P&gt;lv_runtime = ( lv_end - lv_start ) / 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the divide by 1000 good for? I am not aware that anything measure in nanoseconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The GUI shows response time, but response time is not runtime.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last posting, why is the difference not calculated, if you repeat already given answers, then please improve them!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 07:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250808#M1014679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-12T07:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250809#M1014680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; The GUI shows response time, but response time is not runtime.&lt;/P&gt;&lt;P&gt;&amp;gt; Siegfried&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obviously, but the op said "response time", not run time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 10:02:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250809#M1014680</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-08-12T10:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250810#M1014681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct, but what he actually seems to mean is "run time", since he's talking about the time certain functions take to execute. I would put the term "response time" into the GUI/network domain.&lt;/P&gt;&lt;P&gt;I might be completely wrong, let me know if so. Only the OP can clarify, I think, we're all guessing.&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Aug 2008 12:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250810#M1014681</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-08-12T12:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250811#M1014682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Obviously, but the op said "response time", not run time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes that is true, but is also obvious that only runtime make sense in the original question &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Siegfried&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 08:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250811#M1014682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T08:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250812#M1014683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i mean runtime, my fault. sorry for the confusion!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, thank ya all for responsing. Im using the interface abap_runtime right now, it does excactly what im looking for, thank you Rich!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 08:40:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250812#M1014683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T08:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250813#M1014684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey guys - I did also say "Not useful for the original poster, I'll grant you" &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 10:52:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250813#M1014684</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-08-13T10:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: System Variable for Response Time?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250814#M1014685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;doesn't count, it was in parenthesis &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 11:16:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/system-variable-for-response-time/m-p/4250814#M1014685</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2008-08-13T11:16:16Z</dc:date>
    </item>
  </channel>
</rss>

