<?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 Problem with EXPORT/IMPORT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338369#M171489</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;   This looks really strange. I was able to use EXPORT/IMPORT statements before successfully. I am exporting itab to a memory id in one prg and trying to import from the same memory id in another prg, it is not working. But when I import in the same prg, it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First prg: Successfully importing from Memory id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export v_table_lines to memory id 'lines'.&lt;/P&gt;&lt;P&gt;clear v_table_lines.&lt;/P&gt;&lt;P&gt;import v_table_lines from memory id 'lines'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second Prg: Not able to import from memory id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:v_table_lines type i.&lt;/P&gt;&lt;P&gt;import v_table_lines from memory id 'lines'.&lt;/P&gt;&lt;P&gt;write v_table_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 May 2006 14:09:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-04T14:09:04Z</dc:date>
    <item>
      <title>Problem with EXPORT/IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338369#M171489</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;   This looks really strange. I was able to use EXPORT/IMPORT statements before successfully. I am exporting itab to a memory id in one prg and trying to import from the same memory id in another prg, it is not working. But when I import in the same prg, it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First prg: Successfully importing from Memory id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;export v_table_lines to memory id 'lines'.&lt;/P&gt;&lt;P&gt;clear v_table_lines.&lt;/P&gt;&lt;P&gt;import v_table_lines from memory id 'lines'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second Prg: Not able to import from memory id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:v_table_lines type i.&lt;/P&gt;&lt;P&gt;import v_table_lines from memory id 'lines'.&lt;/P&gt;&lt;P&gt;write v_table_lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Naga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 14:09:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338369#M171489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T14:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with EXPORT/IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338370#M171490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naga,&lt;/P&gt;&lt;P&gt;Try Importing the contents of v_table_lines into another table of same type..&lt;/P&gt;&lt;P&gt;have a look at this sample prog...&lt;/P&gt;&lt;P&gt;Example for SAPMZTS2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM SAPMZTS2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: TEXT1(10),&lt;/P&gt;&lt;P&gt;      TEXT3 LIKE TEXT1 VALUE 'Initial'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT TEXT3 FROM MEMORY ID 'text'.&lt;/P&gt;&lt;P&gt;WRITE: / SY-SUBRC, TEXT3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT TEXT2 TO TEXT1 FROM MEMORY ID 'text'.&lt;/P&gt;&lt;P&gt;WRITE: / SY-SUBRC, TEXT1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example for SAPMZTS3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM SAPMZTS3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA JTAB LIKE SBOOK OCCURS 10 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT ITAB TO JTAB FROM MEMORY ID 'table'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT JTAB.&lt;/P&gt;&lt;P&gt;  WRITE / JTAB-BOOKID.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanveer.&lt;/P&gt;&lt;P&gt;Please mark helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 14:31:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338370#M171490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T14:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with EXPORT/IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338371#M171491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The only thing you might want to check is the spelling of the variables in both the programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, try to change the same into upper case and try.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 14:33:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338371#M171491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T14:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with EXPORT/IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338372#M171492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will have to maintain the Parameter ID in table TPARA, but you will also have to change it to a Z object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use SM30 to maintain this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ignore this. I was thinking of something else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 14:34:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338372#M171492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T14:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with EXPORT/IMPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338373#M171493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naga,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THe import/export mechanism work on some session of GUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try run second program in the same mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye&lt;/P&gt;&lt;P&gt;enzo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 May 2006 14:58:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-export-import/m-p/1338373#M171493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-04T14:58:58Z</dc:date>
    </item>
  </channel>
</rss>

