<?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 using tables changing values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838382#M664712</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to know how the interface of the perform should be ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM &amp;lt;form_name&amp;gt; USING &amp;lt;it_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM &amp;lt;form_name&amp;gt; USING &amp;lt;table_name&amp;gt; TYPE  &amp;lt;table_type&amp;gt; or 'ANY TABLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly you can also use 'CHANGING'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 06 Oct 2007 10:11:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-06T10:11:11Z</dc:date>
    <item>
      <title>perform statement using tables changing values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838381#M664711</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;I have 2 internal tables(3  out of 10 fields are same in each ITAB) and both has to be processed seperately but has to read same database tables(FOR ALL ENTRIES IN ITAB1 and ITAB2  where field1 EQ ITAB1-FIELD1......) using the key fields.&lt;/P&gt;&lt;P&gt;Can anyone tell me how to use the PERFORM statement USING ITAB CHANGING values.&lt;/P&gt;&lt;P&gt;It is  a requirement else I wouls have processed them seperately.&lt;/P&gt;&lt;P&gt;Will definitely rewards point if useful. I Tried to find some help from previous posts but could not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Shaan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 10:05:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838381#M664711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T10:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: perform statement using tables changing values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838382#M664712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to know how the interface of the perform should be ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM &amp;lt;form_name&amp;gt; USING &amp;lt;it_table&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM &amp;lt;form_name&amp;gt; USING &amp;lt;table_name&amp;gt; TYPE  &amp;lt;table_type&amp;gt; or 'ANY TABLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly you can also use 'CHANGING'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 10:11:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838382#M664712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T10:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: perform statement using tables changing values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838383#M664713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shaan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try something like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM data_sel tables itab1.&lt;/P&gt;&lt;P&gt;PERFORM data_sel tables itab2.&lt;/P&gt;&lt;P&gt;PERFORM data_sel tables itab3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM data_sel tables p_itab type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols &amp;lt;fs&amp;gt; type standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign p_itab to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...further processing&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 10:11:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838383#M664713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T10:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: perform statement using tables changing values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838384#M664714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Shann,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of using &amp;lt;b&amp;gt;CHANGING&amp;lt;/b&amp;gt; statement, you can use the following statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM frm1 USING itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM frm1 USING  tab TYPE &amp;lt;table_type&amp;gt; or 'ANY TABLE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is Useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Gokul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Oct 2007 11:28:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/perform-statement-using-tables-changing-values/m-p/2838384#M664714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-06T11:28:07Z</dc:date>
    </item>
  </channel>
</rss>

