<?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 with Tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450964#M549258</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;Another way is to use Sub Routine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform ........ tables tab1.&lt;/P&gt;&lt;P&gt;perform ........ tables tab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Form .....&lt;/P&gt;&lt;P&gt;    call function .........&lt;/P&gt;&lt;P&gt;Endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srilatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jul 2007 17:47:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-05T17:47:32Z</dc:date>
    <item>
      <title>Perform statement with Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450962#M549256</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;I would like to use the same function module multiple times but with different tables (with different structures) each time. How do I acheive this using perform statement with only one table parameter while calling the form OR optimize in any other way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;UV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 17:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450962#M549256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T17:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement with Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450963#M549257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;May be try with Macro&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  define callfm.
      .......  call your fm   and &amp;amp;1  " Here &amp;amp;1 table contains value table you are passing
     ........
  end-of-definition.

 callfm ztable.
 callfm ytable.
 callfm wtable.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aRs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 17:41:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450963#M549257</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-07-05T17:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement with Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450964#M549258</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;Another way is to use Sub Routine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform ........ tables tab1.&lt;/P&gt;&lt;P&gt;perform ........ tables tab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Form .....&lt;/P&gt;&lt;P&gt;    call function .........&lt;/P&gt;&lt;P&gt;Endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srilatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 17:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450964#M549258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T17:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement with Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450965#M549259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ars and Srilatha.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srilatha,&lt;/P&gt;&lt;P&gt;In form, each table is referred to a structure. Now, this structure is different for each table. So, I think it may not work. Share your thoughts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form table tab1 structure tab1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function XYX&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;data = tab1&lt;/P&gt;&lt;P&gt;..........&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 17:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450965#M549259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T17:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement with Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450966#M549260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi UV,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check with below links :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3634479"&gt;&lt;/A&gt;&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>Thu, 05 Jul 2007 18:03:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450966#M549260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T18:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Perform statement with Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450967#M549261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Seshu.&lt;/P&gt;&lt;P&gt;Field symbol seems close. But still the examples in the link are addressing tables of same structure not tables with different structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jul 2007 20:09:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-with-tables/m-p/2450967#M549261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-05T20:09:40Z</dc:date>
    </item>
  </channel>
</rss>

