<?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: table as changing parameter at FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457274#M830622</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;you can pass table as changing parameter using table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.goto se11 select data type radiobutton.&lt;/P&gt;&lt;P&gt;2.enter any name and press create.&lt;/P&gt;&lt;P&gt;3.select table type radiobutton in pop up window.&lt;/P&gt;&lt;P&gt;4.create your table type of type structure you want to be.&lt;/P&gt;&lt;P&gt;5. now in changing parameter of your fm create table of type this table type.&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;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward points if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Feb 2008 11:12:23 GMT</pubDate>
    <dc:creator>Vijay</dc:creator>
    <dc:date>2008-02-13T11:12:23Z</dc:date>
    <item>
      <title>table as changing parameter at FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457271#M830619</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;I want to create a Function Module. As changing value I want to declare &lt;/P&gt;&lt;P&gt;a table. How is that possible ? Passing a paramter as table is obselete .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reagards&lt;/P&gt;&lt;P&gt;sas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 11:03:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457271#M830619</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T11:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: table as changing parameter at FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457272#M830620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in changing parameter we cann't use tables.&lt;/P&gt;&lt;P&gt;for this purpose u can use tables tab for input / output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 11:09:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457272#M830620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T11:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: table as changing parameter at FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457273#M830621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erdem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a &lt;STRONG&gt;Table Type&lt;/STRONG&gt; for the structure of your table from SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(In SE11 ... use the &lt;STRONG&gt;Data type&lt;/STRONG&gt; section for table type creation)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then declare the CHANGING parameter by referencing this table type. this will allow the CHANGING parameter to accept an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When passing the internal table to the CHANGING parameter in your program (when calling the FM), pass the body of the table i.e. = itab[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 11:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457273#M830621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T11:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: table as changing parameter at FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457274#M830622</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;you can pass table as changing parameter using table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.goto se11 select data type radiobutton.&lt;/P&gt;&lt;P&gt;2.enter any name and press create.&lt;/P&gt;&lt;P&gt;3.select table type radiobutton in pop up window.&lt;/P&gt;&lt;P&gt;4.create your table type of type structure you want to be.&lt;/P&gt;&lt;P&gt;5. now in changing parameter of your fm create table of type this table type.&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;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward points if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 11:12:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-as-changing-parameter-at-fm/m-p/3457274#M830622</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2008-02-13T11:12:23Z</dc:date>
    </item>
  </channel>
</rss>

