<?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: processing speed of program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235915#M481544</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u seshureddy for ur helpful answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 03:31:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-09T03:31:44Z</dc:date>
    <item>
      <title>processing speed of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235911#M481540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how do i analyse my program strategy or processing speed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 14:34:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235911#M481540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T14:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: processing speed of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235912#M481541</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 look at the transactioncode SE30, ST06, ST07&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 14:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235912#M481541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T14:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: processing speed of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235913#M481542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can analyse the run-time of programs using the transaction SE30&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 18:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235913#M481542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T18:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: processing speed of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235914#M481543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the Example program to get some idea, else use ST05,SE30 Transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZPPR0019 no standard page heading&lt;/P&gt;&lt;P&gt;                LINE-SIZE 80.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : f1 type i,&lt;/P&gt;&lt;P&gt;       f2 type i,&lt;/P&gt;&lt;P&gt;       f3 type i,&lt;/P&gt;&lt;P&gt;       f4 type i,&lt;/P&gt;&lt;P&gt;       f5 type i,&lt;/P&gt;&lt;P&gt;       f6 type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table for Mara&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data i_mara like mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : i_mseg like mseg occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear : f1,&lt;/P&gt;&lt;P&gt;        f2,&lt;/P&gt;&lt;P&gt;        f3,&lt;/P&gt;&lt;P&gt;        f4,&lt;/P&gt;&lt;P&gt;        f5,&lt;/P&gt;&lt;P&gt;        f6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get run time field f1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara into table i_mara up to 100 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get run time field f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f3 = f2 - f1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ 'Time taken by MARA Table', f3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get run time field f4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mseg into table i_mseg up to 100 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get run time field f5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f6 = f5 - f4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Milli seconds &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ 'Time taken by MSEG Table', f6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if it is helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 21:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235914#M481543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T21:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: processing speed of program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235915#M481544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u seshureddy for ur helpful answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 03:31:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-speed-of-program/m-p/2235915#M481544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T03:31:44Z</dc:date>
    </item>
  </channel>
</rss>

