<?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: pass table from one program to another in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593434#M865256</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;program1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT t_sflight1 TO MEMORY ID 'YH1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT program2 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in &lt;STRONG&gt;program 2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT t_sflight1 FROM  MEMORY ID 'YH1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_sflight1 in internal table,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program 2 should have the same structure and same internal table declared there  also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Mar 2008 10:39:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-26T10:39:22Z</dc:date>
    <item>
      <title>pass table from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593430#M865252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to pass an internal table from one program to another program.&lt;/P&gt;&lt;P&gt;Currently I am using SET PARAMETER and GET PARAMETER but it passes only one value at a time and it comes out from the GET program internal table destroy.&lt;/P&gt;&lt;P&gt;So  I need to pass a complete internal table from one program to another. Please hepl.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abhishek Prakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 10:31:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593430#M865252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T10:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: pass table from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593431#M865253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Abhisek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use IMPORT ... FROM MEMORY ... and EXPORT ... TO MEMORY ... statements.&lt;/P&gt;&lt;P&gt;more info in SAPHelp!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 10:34:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593431#M865253</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-03-26T10:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: pass table from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593432#M865254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;use &lt;/P&gt;&lt;P&gt;EXPORT ITAB[] TO MEMORY ID 'ZMEM'.in first prog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT ITAB[] FROM MEMORY ID 'ZMEM'.in second prog.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 10:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593432#M865254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T10:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: pass table from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593433#M865255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You can use EXPORT to memory in this program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in other program use IMPORT from Memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or use SUBMIT  if you want to pass the itab to other table vai selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more info&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/export01.htm" target="test_blank"&gt;http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/export01.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 10:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593433#M865255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T10:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: pass table from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593434#M865256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;program1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT t_sflight1 TO MEMORY ID 'YH1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT program2 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in &lt;STRONG&gt;program 2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT t_sflight1 FROM  MEMORY ID 'YH1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_sflight1 in internal table,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program 2 should have the same structure and same internal table declared there  also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 10:39:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593434#M865256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T10:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: pass table from one program to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593435#M865257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi abhishek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please try the below code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export itab to memory id 'ABC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in desired program u have to write..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import itab from memory id 'ABC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remember both program must running state in same login.&lt;/P&gt;&lt;P&gt;and a program in which you r calling import is must in memory with either include or submit statment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if help ful.&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jony on Mar 26, 2008 12:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 10:40:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-table-from-one-program-to-another/m-p/3593435#M865257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T10:40:33Z</dc:date>
    </item>
  </channel>
</rss>

