<?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: use perform in some test program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040399#M1172073</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please donot forget to pass the correct parameters in the correct order after the using/changing clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, like others said, debug the subroutie(perform) in the same program, understand why it has been used and how the variables passed are affected before using it in another program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Saipriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Jan 2009 13:47:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-05T13:47:20Z</dc:date>
    <item>
      <title>use perform in some test program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040395#M1172069</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 see in big program some perform ,and i want to test just this perform ,&lt;/P&gt;&lt;P&gt;maybe in other new program ,how i can do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Jan 2009 19:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040395#M1172069</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-04T19:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: use perform in some test program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040396#M1172070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many Options:few are may be some like below examples:&lt;/P&gt;&lt;P&gt;With include Program B in Main program A.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report A.
include B.
perform &amp;lt;routine name&amp;gt;.
"and form could be written in B&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Simply by giving program name with perform.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PERFORM &amp;lt;form name&amp;gt; IN PROGRAM (program name)
 USING XXX changing YYY.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Jan 2009 20:08:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040396#M1172070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-04T20:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: use perform in some test program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040397#M1172071</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; If you want to test it in the same program just put a break point at that point to test it.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2009 03:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040397#M1172071</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2009-01-05T03:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: use perform in some test program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040398#M1172072</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;It is better to test the Perform in the same program itself as it may import values from the program.&lt;/P&gt;&lt;P&gt;As told just put a break in the Perform and step into (F5) of the code of the Subroutine to check for the underlying functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Radhika.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2009 09:10:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040398#M1172072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-05T09:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: use perform in some test program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040399#M1172073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please donot forget to pass the correct parameters in the correct order after the using/changing clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, like others said, debug the subroutie(perform) in the same program, understand why it has been used and how the variables passed are affected before using it in another program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Saipriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2009 13:47:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-perform-in-some-test-program/m-p/5040399#M1172073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-05T13:47:20Z</dc:date>
    </item>
  </channel>
</rss>

