<?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 transfer  internal table in function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411704#M537937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii  ev one,&lt;/P&gt;&lt;P&gt;                  this is  internal tabel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         data:  BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;                   F1(3)  TYPE  C,&lt;/P&gt;&lt;P&gt;                   F2(3)  TYPE N,&lt;/P&gt;&lt;P&gt;                   F3(3)  TYPE C,&lt;/P&gt;&lt;P&gt;                   END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to transfer  this internal table to functions  and  append the records in that  functions. &lt;/P&gt;&lt;P&gt;pls tell   me  how  is this  possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 19:29:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T19:29:30Z</dc:date>
    <item>
      <title>transfer  internal table in function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411704#M537937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii  ev one,&lt;/P&gt;&lt;P&gt;                  this is  internal tabel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         data:  BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;                   F1(3)  TYPE  C,&lt;/P&gt;&lt;P&gt;                   F2(3)  TYPE N,&lt;/P&gt;&lt;P&gt;                   F3(3)  TYPE C,&lt;/P&gt;&lt;P&gt;                   END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to transfer  this internal table to functions  and  append the records in that  functions. &lt;/P&gt;&lt;P&gt;pls tell   me  how  is this  possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 19:29:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411704#M537937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T19:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: transfer  internal table in function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411705#M537938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;but what functions do you want to use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some functions, you just send the internal table to the data/itab parameter.&lt;/P&gt;&lt;P&gt;Other functions, you need to sendo the itab[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Explain more&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 19:34:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411705#M537938</guid>
      <dc:creator>rodrigo_paisante3</dc:creator>
      <dc:date>2007-06-19T19:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: transfer  internal table in function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411706#M537939</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 pass internal table ITAB to TABLES  type parameter of Function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function '&amp;lt;name-of-function&amp;gt;'&lt;/P&gt;&lt;P&gt;                   EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                   IMPORTING&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;                   TABLES&lt;/P&gt;&lt;P&gt;                    &amp;lt;formal parameter&amp;gt;   = ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ashokreddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 20:06:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411706#M537939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T20:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: transfer  internal table in function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411707#M537940</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 you want to pass the internal table to the function module, we need to create a internal table in function module in 'Tables' tab, when you declare the internal table in FM we need to give the reference of the data dictionary. So internal table structure should be created in DD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   With the same sturcture both internal tables {1 in FM and other in program} should be created. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Dj &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward for all useful answers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 21:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411707#M537940</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T21:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: transfer  internal table in function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411708#M537941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i wanted  to transfer this to some function.&lt;/P&gt;&lt;P&gt;   say  call function 'ZFUN_ITAB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible to transfer int table w/o  any DD object reference. and apend or edit it in that function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 03:07:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411708#M537941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-20T03:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: transfer  internal table in function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411709#M537942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes it is possible and best way to make any changes in the table in fn module is passing the int table as table parameter. In se37 just declare one table parameter and pass your int table from your program in table parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; suppose ttab is the table parameter of your fn module.&lt;/P&gt;&lt;P&gt;in fn module sourcecode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ttab-f1 = 'ABC'.&lt;/P&gt;&lt;P&gt;append ttab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in abap &lt;/P&gt;&lt;P&gt;call function 'ZFUN'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;ttab = itab &amp;lt;your itab which you declare in abap code&amp;gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;write : / itab-f1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;it will display ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2007 03:12:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transfer-internal-table-in-function/m-p/2411709#M537942</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-20T03:12:38Z</dc:date>
    </item>
  </channel>
</rss>

