<?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: Passing internal table from one program to other without using IMPORT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279098#M1387970</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;Thanks for your reply. Actually there is some issue with production server where IMPORT/EXPORT are not working. So ic annot use them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Harshad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Oct 2009 12:13:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-10-22T12:13:09Z</dc:date>
    <item>
      <title>Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279095#M1387967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to pass an internal table from one program to other. However i cannot use IMPORT/EXPORT due to some reason. Any idea how this can be done? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Harshad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 11:41:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279095#M1387967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T11:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279096#M1387968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why cant you use import???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ways,&lt;/P&gt;&lt;P&gt;you can pass it as a selection parameter(range table) in the submit statement,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one more not advised way can be storing it in databse table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but again .. .why dont you want to use import export?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 11:49:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279096#M1387968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T11:49:49Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279097#M1387969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;for passing itab from one program to another u can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN FIRST PROGRAM WRITE ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform pass_data(SECOND_PROGRAM_NAME) using ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in both the program declare itab with same structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u want to do some changes in that itab and if u want it back in first program then write as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform pass_data(SECOND_PROGRAM_NAME) using ITAB changing itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 11:52:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279097#M1387969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T11:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279098#M1387970</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;Thanks for your reply. Actually there is some issue with production server where IMPORT/EXPORT are not working. So ic annot use them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Harshad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 12:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279098#M1387970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T12:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279099#M1387971</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 create one memory area for intertable  and  you use that memory area in other table .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 12:44:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279099#M1387971</guid>
      <dc:creator>kamesh_g</dc:creator>
      <dc:date>2009-10-22T12:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279100#M1387972</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;Try doing like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXPORT itab FROM itab TO MEMORY ID 'ITAB_ID1'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IMPORT itab FROM MEMORY ID 'ITAB_ID1'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 12:50:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279100#M1387972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T12:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279101#M1387973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I  mentioned that i cannot EXPORT/IMPORT due to some reason on production.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 12:51:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279101#M1387973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T12:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279102#M1387974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;harsad,&lt;/P&gt;&lt;P&gt;have you checked the options i suggested?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 12:53:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279102#M1387974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-22T12:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Passing internal table from one program to other without using IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279103#M1387975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use shared memory for that, or a file, or a table in the database.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Oct 2009 12:53:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-internal-table-from-one-program-to-other-without-using-import/m-p/6279103#M1387975</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2009-10-22T12:53:39Z</dc:date>
    </item>
  </channel>
</rss>

