<?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: Perform statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135512#M449239</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There is no such table which stores the occurances of PERFORM statement in any program.&lt;/P&gt;&lt;P&gt;So you can't find like that.&lt;/P&gt;&lt;P&gt;If needed we use SCAN ABAP source  Code to find the same into takens...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ANJI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Apr 2007 10:00:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-10T10:00:55Z</dc:date>
    <item>
      <title>Perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135511#M449238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;There is a Perform statement in SAP 4.5b:&lt;/P&gt;&lt;P&gt;PERFORM 2150_FIND_COUNTRY/CAT_PC.&lt;/P&gt;&lt;P&gt;So when we replicate this into ECC version it throwing error like:&lt;/P&gt;&lt;P&gt; Syntactical Error:The "/" chacater is reserved for identification of namespaces . It must be entered twice . The name of a namespace must be atleast 3 characters long.&lt;/P&gt;&lt;P&gt;So we changed to PERFORM 2150_FIND_COUNTRY_CAT_PC.Then it worked fine.&lt;/P&gt;&lt;P&gt;But is it the way to do it?..How can we know that this  Perform statement is used in how many and  what  programs?..&lt;/P&gt;&lt;P&gt;It should not effect to allother pgms which calls this Form.&lt;/P&gt;&lt;P&gt;I know Where used list for Prgram but not for Perform Statement.&lt;/P&gt;&lt;P&gt;&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>Tue, 10 Apr 2007 09:57:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135511#M449238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T09:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135512#M449239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;There is no such table which stores the occurances of PERFORM statement in any program.&lt;/P&gt;&lt;P&gt;So you can't find like that.&lt;/P&gt;&lt;P&gt;If needed we use SCAN ABAP source  Code to find the same into takens...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ANJI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 10:00:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135512#M449239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T10:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135513#M449240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could do a where-used list on the form name in the very same way that you do for the Porgram name.. it will list all known instances where the form is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem occurs only when there is another program that calls this form dynamically - I am not aware of any ways to trap this. Maybe you can look for notes around this form name to see if SAP has this documented?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 10:06:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135513#M449240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T10:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135514#M449241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the Report RSRSCAN1 to search for that Perform or you can use the function module RPR_ABAP_SOURCE_SCAN to search for that perform&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, 10 Apr 2007 10:12:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135514#M449241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T10:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135515#M449242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sudheer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the FM name you had specified is present in which version. also the program you had given searches for that form anly in the program name specified. it doesnt give the where used list for all the objects where all it is present&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Navneeth.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2007 10:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement/m-p/2135515#M449242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-10T10:18:45Z</dc:date>
    </item>
  </channel>
</rss>

