<?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: Export tables/structure from FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255156#M1528145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can change EXPORTING parameter to TABLES parameter...&lt;/P&gt;&lt;P&gt;then you will be able to do APPEND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Sep 2010 19:42:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-28T19:42:05Z</dc:date>
    <item>
      <title>Export tables/structure from FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255155#M1528144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SAPMASTER,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please, I need your help!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Forgive my stupid doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to export a table from FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is my FM:&lt;/P&gt;&lt;P&gt;FUNCTION ZZEXPORTA.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local Interface:&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     VALUE(OUT1) TYPE  ZZSTRU_ZZQTDMAT&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab TYPE TABLE OF ZZSTRU_ZZQTDMAT,&lt;/P&gt;&lt;P&gt;           wa LIKE LINE OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-material   = '123'.&lt;/P&gt;&lt;P&gt;wa-descricao  = 'nothing'.&lt;/P&gt;&lt;P&gt;wa-unidade    = 'ea'.&lt;/P&gt;&lt;P&gt;wa-quantidade = 123.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING wa to out1.&lt;/P&gt;&lt;P&gt;CLEAR wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa-material   = '234'.&lt;/P&gt;&lt;P&gt;wa-descricao  = 'all'.&lt;/P&gt;&lt;P&gt;wa-unidade    = 'xyz'.&lt;/P&gt;&lt;P&gt;wa-quantidade = 456.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING wa to out1.&lt;/P&gt;&lt;P&gt;CLEAR wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFUNCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result is just the "last" data that I put in wa (this is right).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please, how can I add 2 "registers" to structure ?&lt;/P&gt;&lt;P&gt;I tried APPEND but I got an error message: &lt;/P&gt;&lt;P&gt;"out1 is not a internal table".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Edson Luiz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Sep 2010 19:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255155#M1528144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-28T19:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Export tables/structure from FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255156#M1528145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can change EXPORTING parameter to TABLES parameter...&lt;/P&gt;&lt;P&gt;then you will be able to do APPEND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Sep 2010 19:42:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255156#M1528145</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-28T19:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Export tables/structure from FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255157#M1528146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishnendu Laha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help but I have already put in TABLES tab.&lt;/P&gt;&lt;P&gt;SAP did not permit. I got the error message:&lt;/P&gt;&lt;P&gt;"TABLE is OBSOLETE".&lt;/P&gt;&lt;P&gt;So, I put in Export tab.&lt;/P&gt;&lt;P&gt;Please, is there any way to put in the TABLES tab?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Edson Luiz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Sep 2010 19:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255157#M1528146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-28T19:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Export tables/structure from FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255158#M1528147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create one table type from SE11 and declare output (exporting table) ref. of that table type. Let us know if you  have any issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Sep 2010 19:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255158#M1528147</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2010-09-28T19:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Export tables/structure from FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255159#M1528148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen Inuganti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much for your answer.&lt;/P&gt;&lt;P&gt;Now everything is ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Edson Luiz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Sep 2010 12:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-tables-structure-from-fm/m-p/7255159#M1528148</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-29T12:25:18Z</dc:date>
    </item>
  </channel>
</rss>

