<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419528#M821284</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change the same in the 'form' statement also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also check the number of parameters is same in calling statement and called statement ( ie perform and form )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Feb 2008 12:28:34 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2008-02-08T12:28:34Z</dc:date>
    <item>
      <title>PERFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419524#M821280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i am getting error while executing this statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM get_cl_acc_value using c_setnr TABLES&lt;/P&gt;&lt;P&gt;          I_FORMULA_LINES&lt;/P&gt;&lt;P&gt;          I_SET_LINES_BASIC&lt;/P&gt;&lt;P&gt;          I_SET_LINES_DATA&lt;/P&gt;&lt;P&gt;          I_SET_LINES_MULTI&lt;/P&gt;&lt;P&gt;          I_SET_LINES_SINGLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR : Field tables is unknown.  It is niether in one of the specified tables nor defined by a "DATA" statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 12:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419524#M821280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T12:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: PERFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419525#M821281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change like this and try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM get_cl_acc_value TABLES&lt;/P&gt;&lt;P&gt;I_FORMULA_LINES&lt;/P&gt;&lt;P&gt;I_SET_LINES_BASIC&lt;/P&gt;&lt;P&gt;I_SET_LINES_DATA&lt;/P&gt;&lt;P&gt;I_SET_LINES_MULTI&lt;/P&gt;&lt;P&gt;I_SET_LINES_SINGLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using c_setnr &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 12:22:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419525#M821281</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2008-02-08T12:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: PERFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419526#M821282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES has to be before USING:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM get_cl_acc_value &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;I_FORMULA_LINES&lt;/P&gt;&lt;P&gt;I_SET_LINES_BASIC&lt;/P&gt;&lt;P&gt;I_SET_LINES_DATA&lt;/P&gt;&lt;P&gt;I_SET_LINES_MULTI&lt;/P&gt;&lt;P&gt;I_SET_LINES_SINGLE&lt;/P&gt;&lt;P&gt;using c_setnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 12:22:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419526#M821282</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-02-08T12:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: PERFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419527#M821283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya i did this but now i am getting following error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Differene number of parameters in FORM and PERFORM&lt;/P&gt;&lt;P&gt;(routine : GET_CL_ACC_VALUE, number of formal parameters: 5, number of actual&lt;/P&gt;&lt;P&gt;parameters: 6).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 12:24:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419527#M821283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-08T12:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: PERFORM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419528#M821284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;change the same in the 'form' statement also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also check the number of parameters is same in calling statement and called statement ( ie perform and form )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2008 12:28:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform/m-p/3419528#M821284</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2008-02-08T12:28:34Z</dc:date>
    </item>
  </channel>
</rss>

