<?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: How to test abap program? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485709#M226679</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marea Yang,&lt;/P&gt;&lt;P&gt;  Why and what exactly u want to test the abap program? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if u want the functionality for part of program u can test it with debugging on.U can download Internal tables data and check it.&lt;/P&gt;&lt;P&gt;Also If its a report program writing to the output screen then u can test the output with debugging on u get an option in the tool bar which directs to screen output specfying what was written till that part of program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Swaroop Patri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Aug 2006 16:01:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-17T16:01:04Z</dc:date>
    <item>
      <title>How to test abap program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485705#M226675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, all,&lt;/P&gt;&lt;P&gt;Is there any body can tell me how I can test my abap program for just some of lines?  For example, the program has total 3000 lines. But I only want to test portion from line 100 to line 500. How I can do that?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Marea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 15:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485705#M226675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T15:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to test abap program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485706#M226676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Yang,&lt;/P&gt;&lt;P&gt; Put a break point at that section of code and give the test data which makes it to take you to that point and there by you can test it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  DATA:
    wa_selopt LIKE jobname,
    t_selopt  LIKE TABLE OF jobname WITH DEFAULT KEY.

  LOOP AT jobname INTO wa_selopt.
    APPEND wa_selopt TO t_selopt.
  ENDLOOP.

  PERFORM prepare_selection_32 TABLES t_selopt selection_jobname.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i wnat to stop at Loop statement then i will put a break point here and execute the code with a valid date that fetches me to that place...&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;santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Santosh Kumar P&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 15:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485706#M226676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T15:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to test abap program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485707#M226677</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;  Keep break point at 100 line and execute the program. It can be set by placing cursor on the required line and press STOP button (red color button) on application toolbar. The control comes and stops at 100 line. Press F5 to execute line by line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 15:58:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485707#M226677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T15:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to test abap program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485708#M226678</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;in the debug mode,&lt;/P&gt;&lt;P&gt;as you know the line numbers form where you want to test give the line number in the space right side, there is a space with up and down arrow matks, and click enter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will take you to that line and test from there&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sowjanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 16:00:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485708#M226678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T16:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to test abap program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485709#M226679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marea Yang,&lt;/P&gt;&lt;P&gt;  Why and what exactly u want to test the abap program? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if u want the functionality for part of program u can test it with debugging on.U can download Internal tables data and check it.&lt;/P&gt;&lt;P&gt;Also If its a report program writing to the output screen then u can test the output with debugging on u get an option in the tool bar which directs to screen output specfying what was written till that part of program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Swaroop Patri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 16:01:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485709#M226679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T16:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to test abap program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485710#M226680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marea,&lt;/P&gt;&lt;P&gt;  To add to the above posts, If you keep a break point at line 100 and 500, you cannot avoid the lines 1-100 from being executed.&lt;/P&gt;&lt;P&gt;By default the execution will start from line 1.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 16:02:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485710#M226680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T16:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to test abap program?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485711#M226681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks everybody for the answer! &lt;/P&gt;&lt;P&gt;Marea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 17:11:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-test-abap-program/m-p/1485711#M226681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T17:11:00Z</dc:date>
    </item>
  </channel>
</rss>

