<?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 Import table parameter given as VALUE(table) - what does this mean? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759070#M328686</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 I have a method with import parameter as an internal table and the import parameter is the same as export parameter and the parameter is definied as VALUE(table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do I change values in this table? I want to loop at change values in some column in this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the import parameter is an internal table without the VALUE() I just loop and assign a field-symbol and then just &lt;/P&gt;&lt;P&gt;&amp;lt;fs-itab&amp;gt;-some_column = 'some_value'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this does not seem to work when the import table is definied as VALUE(table)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Dec 2006 14:01:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-21T14:01:55Z</dc:date>
    <item>
      <title>Import table parameter given as VALUE(table) - what does this mean?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759070#M328686</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 I have a method with import parameter as an internal table and the import parameter is the same as export parameter and the parameter is definied as VALUE(table).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how do I change values in this table? I want to loop at change values in some column in this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the import parameter is an internal table without the VALUE() I just loop and assign a field-symbol and then just &lt;/P&gt;&lt;P&gt;&amp;lt;fs-itab&amp;gt;-some_column = 'some_value'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this does not seem to work when the import table is definied as VALUE(table)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 14:01:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759070#M328686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T14:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Import table parameter given as VALUE(table) - what does this mean?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759071#M328687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Baran,&lt;/P&gt;&lt;P&gt;    I don't think if the system allows you to have two interface parameters have the same name.&lt;/P&gt;&lt;P&gt;the name should be different.&lt;/P&gt;&lt;P&gt;If the same table is to be used as import and export, it should be declared as CHANGING parameter instead.&lt;/P&gt;&lt;P&gt;Can you let us know which badi are your trying to use?&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>Thu, 21 Dec 2006 14:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759071#M328687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T14:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Import table parameter given as VALUE(table) - what does this mean?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759072#M328688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, you are right, it is declared as "changing" but my question is: what does VALUE(itab) differ from just itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it is sent in as itab i would do as following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab ASSIGNING &amp;lt;fs_itab&amp;gt;&lt;/P&gt;&lt;P&gt;     &amp;lt;fs_itab&amp;gt;-column_name = 'some_value'.&lt;/P&gt;&lt;P&gt;END LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case I do exactly the same, and the values get set in the BADI but when the values come to some table the newly set values does not show so I was wondering if there is some syntax different in changing values in a table sent in as VALUE(itab)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 14:18:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759072#M328688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T14:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Import table parameter given as VALUE(table) - what does this mean?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759073#M328689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The the parameter is being shown as VALUE(), then I think it means that the parameters are being PASSED BY VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note - Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 14:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-table-parameter-given-as-value-table-what-does-this-mean/m-p/1759073#M328689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T14:21:22Z</dc:date>
    </item>
  </channel>
</rss>

