<?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: Import and Export to Memory in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955911#M66280</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ferdinand,&lt;/P&gt;&lt;P&gt;  i tried to write a sample prog. with your code ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what does variable v_memory_obj contain ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems it is always blank, maybe some code lines are missing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Manuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Aug 2005 10:19:55 GMT</pubDate>
    <dc:creator>manuel_bassani</dc:creator>
    <dc:date>2005-08-01T10:19:55Z</dc:date>
    <item>
      <title>Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955906#M66275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi guys, im currently making a program that imports and exports data into a memory so that when the user logs out that would still remain in the memory. The data would be use for the slection screen but i can't seem to make it work.  Could you please help me. Or if you have other ideas on how to store data that would also be ok. The thing is when Im running the program through se38 its working fine but if i run it through its transaction code the import does not work. Please help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here is my code: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: begin of i_memory, 
             memory_id(31), 
           end of i_memory. 



initialization. 
 IF p_prem IS INITIAL. 
     CONCATENATE c_memory_id sy-uname into v_memory_id 
                 SEPARATED BY c_underscore. 
     IMPORT i_memory FROM MEMORY ID v_memory_id. 
     IF sy-subrc = 0. 
        p_prem = i_memory-memory_id. 
     ELSE. 
        p_prem = '0.04'. 
     Endif. 
  ENDIF. 



at selection-screen. 
  i_memory-memory_id = v_memory_obj. 
  CONCATENATE c_memory_id sy-uname into v_memory_id 
              SEPARATED BY c_underscore. 

  EXPORT i_memory to MEMORY ID v_memory_id. 
  IF sy-subrc = 0. 
  Endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help. Thanks in advance guys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 09:54:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955906#M66275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T09:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955907#M66276</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;Use 'FREE MEMORY ID' to free the memory when you do not want ABAP to hold the data in memory anymore.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2004/helpdata/en/fc/eb3beb358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2004/helpdata/en/fc/eb3beb358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Murugesh AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 09:59:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955907#M66276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T09:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955908#M66277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually i don't need to free the memory. I need to retrieve data from the memory but its not working. Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:08:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955908#M66277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955909#M66278</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 it with   &amp;lt;a href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba6eb35c111d1829f0000e829fbfe/frameset.htm"&amp;gt;SPA/GPA&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:08:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955909#M66278</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-08-01T10:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955910#M66279</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;C the following code to free memory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FREE MEMORY ID &amp;lt;gv_memratio&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955910#M66279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955911#M66280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ferdinand,&lt;/P&gt;&lt;P&gt;  i tried to write a sample prog. with your code ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what does variable v_memory_obj contain ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems it is always blank, maybe some code lines are missing...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Manuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:19:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955911#M66280</guid>
      <dc:creator>manuel_bassani</dc:creator>
      <dc:date>2005-08-01T10:19:55Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955912#M66281</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;Declare the following data.&lt;/P&gt;&lt;P&gt;      data : i_selection_table like rsparams occurs 0,&lt;/P&gt;&lt;P&gt;             v_rsvar like rsvar-report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call this function module&lt;/P&gt;&lt;P&gt;      call function 'RS_REFRESH_FROM_SELECTOPTIONS'&lt;/P&gt;&lt;P&gt;        exporting&lt;/P&gt;&lt;P&gt;          curr_report           = v_rsvar&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SP                    =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        tables&lt;/P&gt;&lt;P&gt;          selection_table       = i_selection_table&lt;/P&gt;&lt;P&gt; exceptions&lt;/P&gt;&lt;P&gt;   not_found             = 1&lt;/P&gt;&lt;P&gt;   no_report             = 2&lt;/P&gt;&lt;P&gt;   others                = 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i_selection_table will contain the user input parameters now use the export and import to save this table and download it from memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 5 &lt;/P&gt;&lt;P&gt;EXPORT (itab) TO ... . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Specifies the objects you want to export in the internal table itab. You can use this dynamic variant instead of the static one in any of variants 1 to 4. All additions that you can use with the static form are also allowed with the dynamic form. The table itab must not have the type HASHED TABLE or ANY TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;Structure of the internal table itab: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first column of the table contains the object names in the data cluster (corresponds to the static obj1, ..., objn). The second column contains the different name in the program (if necessary), which corresponds to the field f in the = f or FROM f addition. If the table only has one column, or the second column contains only spaces, this corresponds to a static EXPORT without a = or FROM addition. The first and second columns of the internal table should have the type character. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shekhar Kulkarni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:37:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955912#M66281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955913#M66282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi manuel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the variable contains the input of the user from the selection screen. if i put in let's say '1' then that would be its value. Ü&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 11:41:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955913#M66282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T11:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955914#M66283</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;i was just wondering if its still going to work if i log off. because when i tried logging off the data from the memory was erased..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 11:42:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955914#M66283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T11:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955915#M66284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to Use the concept of Saving Data Objects in Cluster Databases .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following syntax&lt;/P&gt;&lt;P&gt;EXPORT &amp;lt;f1&amp;gt; [FROM &amp;lt;g 1&amp;gt;] &amp;lt;f 2&amp;gt; [FROM &amp;lt;g 2&amp;gt;] ... &lt;/P&gt;&lt;P&gt;       TO DATABASE &amp;lt;dbtab&amp;gt;(&amp;lt;ar&amp;gt;) [CLIENT &amp;lt;cli&amp;gt;] ID &amp;lt;key&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Table INDX for this purpose . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope this will be useful .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 12:09:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955915#M66284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T12:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955916#M66285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should try to use IMPORT/EXPORT TO DATABASE instead of IMPORT/EXPORT FROM MEMORY...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;import/export from memory is often used to pass data from a program to another (for example: before and after a submit statement). ABAP memory is deleted after logoff.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using a cluster table (like table INDX) allows to import/export data also after user logoff (store information in a table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will help,&lt;/P&gt;&lt;P&gt;regards, Manuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 12:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955916#M66285</guid>
      <dc:creator>manuel_bassani</dc:creator>
      <dc:date>2005-08-01T12:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955917#M66286</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;As "Ferdinand Catabian" rightly pointed out, if you just export to the memory, then it will be automatically erased, when you log off from the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you want the data not to be erased, like that, EXPORT/ IMPORT using DATABASE (i.e., using a cluster table). In this case, even if the user logs off, your data will reside in the database, and the next time user logs on, you will be able to retrieve the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Juwin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2005 02:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955917#M66286</guid>
      <dc:creator>Juwin</dc:creator>
      <dc:date>2005-08-02T02:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Import and Export to Memory</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955918#M66287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shekhar Kulkarni  &lt;/P&gt;&lt;P&gt;I need help understanding your code.&lt;/P&gt;&lt;P&gt;Im trying to do same thing as you described in the post. &lt;/P&gt;&lt;P&gt;My main purpose is to IMPORT variant contents from cluster table VARI for all the selection screen variables dynamically.&lt;/P&gt;&lt;P&gt;I can IMPORT individual screen variables :: For ex :&lt;/P&gt;&lt;P&gt;st_key-report = 'ZNIDHS20'.&lt;/P&gt;&lt;P&gt;st_key-variant = 'TEST_VAR'.&lt;/P&gt;&lt;P&gt;IMPORT slsin_p TO TMP_VAR FROM DATABASE VARI(VA) ID ST_KEY.&lt;/P&gt;&lt;P&gt;This will get me the contents of slsin_p parameter in variant TEST_VAR of program ZNIDHS20.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But If I use same statement in a loop, im not able to get the data. : see below&lt;/P&gt;&lt;P&gt;LOOP AT i_selection_table..&lt;/P&gt;&lt;P&gt; IMPORT i_selection_table-name TO TMP_VAR FROM DATABASE VARI(VA) ID ST_KEY.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found your post interesting and started to test this way....As said, I have extracted selection screen variable table, and then tried to EXPORT the contents to Share Memory from database table VARI(VA), unfortunately program fails. Pls see code below....Pls see if you can help me out...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF st_key,&lt;/P&gt;&lt;P&gt;        report LIKE rsvar-report,&lt;/P&gt;&lt;P&gt;        variant LIKE rsvar-variant,&lt;/P&gt;&lt;P&gt;      END OF st_key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : i_selection_table like rsparams occurs 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;v_rsvar like rsvar-report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;st_key-report  = 'ZNIDHS20'.&lt;/P&gt;&lt;P&gt;st_key-variant = 'VJ_TEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V_RSVAR = 'ZNIDHS20'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;       COL1(40) type c,&lt;/P&gt;&lt;P&gt;       COL2(40) TYPE C,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    CURR_REPORT           = V_RSVAR&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    SELECTION_TABLE       = i_selection_table&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NOT_FOUND             = 1&lt;/P&gt;&lt;P&gt;   NO_REPORT             = 2&lt;/P&gt;&lt;P&gt;   OTHERS                = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT I_SELECTION_TABLE.&lt;/P&gt;&lt;P&gt;  MOVE I_SELECTION_TABLE-SELNAME TO ITAB-COL1.&lt;/P&gt;&lt;P&gt;  APPEND ITAB.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT (ITAB) TO SHARED MEMORY VARI(VA) ID ST_KEY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT ITAB = JTAB FROM SHARED MEMORY VARI(VA) ID ST_KEY.&lt;/P&gt;&lt;P&gt;Pls help.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2007 22:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/import-and-export-to-memory/m-p/955918#M66287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-04T22:44:15Z</dc:date>
    </item>
  </channel>
</rss>

