<?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: Tuning &amp; Testing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470010#M221025</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;seshu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shoot me a test mail to callnaveen@gmail.com i will send it you what ever i am having&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Jul 2006 15:51:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-25T15:51:26Z</dc:date>
    <item>
      <title>Tuning &amp; Testing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470009#M221024</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;How to do Performance Tuning, Integration Testing, Unit Testing, Dump Analysis in ABAP?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anybody got screen shots / with example?&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, 25 Jul 2006 15:42:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470009#M221024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T15:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Tuning &amp; Testing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470010#M221025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;seshu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;shoot me a test mail to callnaveen@gmail.com i will send it you what ever i am having&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 15:51:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470010#M221025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T15:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Tuning &amp; Testing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470011#M221026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please forward me the same to vijayk_sap@yahoo.co.in&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Varun .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 15:53:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470011#M221026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T15:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tuning &amp; Testing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470012#M221027</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; Performance Tuning..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Check the SELECT STatements&lt;/P&gt;&lt;P&gt;   a. Specify necessary conditions to retrieve the data&lt;/P&gt;&lt;P&gt;   b. Specify all the key fields if known.&lt;/P&gt;&lt;P&gt;   c. Make sure that the tables are not empty when used  &lt;/P&gt;&lt;P&gt;      in SELECT --- FOR ALL ENTRIES.&lt;/P&gt;&lt;P&gt;   d. Always clear/ refresh variables and tables if not  &lt;/P&gt;&lt;P&gt;      required any more in the program.&lt;/P&gt;&lt;P&gt;   e. Use the INTO TABLE instead of INTO CORRESPONDING &lt;/P&gt;&lt;P&gt;      FIELDS OF TABLE in a SELECT statement.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;2. Check the Nested Loops in the programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Avoid SELECT inside LOOPS.&lt;/P&gt;&lt;P&gt;   Instead of using SELECT inside loops...use the &lt;/P&gt;&lt;P&gt;   appropriate JOINS to select records from two or more  &lt;/P&gt;&lt;P&gt;   tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. When using the CONTROLS, optimally use the FLUSH &lt;/P&gt;&lt;P&gt;   Commands.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Read the tables by Binary Search Method specifying &lt;/P&gt;&lt;P&gt;   the Keys used for Sorting that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Use of right kind of Internal tables (Standard,   &lt;/P&gt;&lt;P&gt;   Sorted, and Hash tabes) is very important.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Integration Testing.&lt;/P&gt;&lt;P&gt;It is always good practise test the individual applications thoroughly before going for integration testing. The application accessing all the submodules is tested only when the individual components are working correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unit Testing.&lt;/P&gt;&lt;P&gt;1. Initially check the coding standards specified by   &lt;/P&gt;&lt;P&gt;   your company/ client.&lt;/P&gt;&lt;P&gt;2. Check the performance tuning techniques specified in &lt;/P&gt;&lt;P&gt;    above. &lt;/P&gt;&lt;P&gt;3. Check the application specific conditions.&lt;/P&gt;&lt;P&gt;4. Check for all the errors and the corresponding error &lt;/P&gt;&lt;P&gt;   handling conitions.&lt;/P&gt;&lt;P&gt;5. Do the negative testing, that enter incorrect data &lt;/P&gt;&lt;P&gt;   to process records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2006 16:01:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470012#M221027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-25T16:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Tuning &amp; Testing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470013#M221028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi seshu,&lt;/P&gt;&lt;P&gt;check u r mail i sent it to u &lt;/P&gt;&lt;P&gt;if u find it useful plz mark the points in the thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 14:05:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tuning-testing/m-p/1470013#M221028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T14:05:27Z</dc:date>
    </item>
  </channel>
</rss>

