<?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: Problem with Import/ Export in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050813#M1701893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What Rene has explained here is that one user having 2 separate logons have 2 different internal sessions and the data in memory is not copied.&lt;/P&gt;&lt;P&gt;Try this program by logging in form 2 different systems and look at the outputs. Check the results in Debug mode. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;DATA lv_time &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;sy-timlo.&lt;BR /&gt;lv_time&amp;nbsp; = sy-timlo.&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;EXPORT &lt;/SPAN&gt;lv_time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;MEMORY &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'id'&lt;/SPAN&gt;.&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;IMPORT &lt;/SPAN&gt;lv_time = lv_time &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;MEMORY &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'id'&lt;/SPAN&gt;.&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;write &lt;/SPAN&gt;lv_time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Shambu&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Shambu VS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Sep 2012 07:16:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-09-28T07:16:21Z</dc:date>
    <item>
      <title>Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050804#M1701884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have problem with import / export statement&lt;/P&gt;&lt;P&gt;I have used the below statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I am using this in Badis but the problem is if two users use the transaction simultaniously &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;BADI 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;wa_indx-aedat = sy-datum.&lt;/P&gt;&lt;P&gt;&amp;nbsp; wa_indx-usera = sy-uname.&lt;/P&gt;&lt;P&gt;&amp;nbsp; wa_indx-pgmid = sy-repid.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; EXPORT ct_param FROM ct_param&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TO DATABASE indx(ab)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID 'CTPARAM'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM wa_indx&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG&gt;&amp;nbsp; .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; BADI 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IMPORT ct_param TO&amp;nbsp; ct_param&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM DATABASE indx(ab)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID 'CTPARAM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; there is problem in data i.e if one user has exported and the other user has completed the &lt;/P&gt;&lt;P&gt;&amp;nbsp; transaction the previous user also sees the data data of latter user.&lt;/P&gt;&lt;P&gt;&amp;nbsp; the sequence is as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Export --- user1 &lt;/P&gt;&lt;P&gt;&amp;nbsp; export --- user 2&lt;/P&gt;&lt;P&gt;&amp;nbsp; import --- user 2 &lt;/P&gt;&lt;P&gt;&amp;nbsp; import --- user 1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;This way user 1 has data of user 2 as it is already overwritten (export --- user2) &lt;/P&gt;&lt;P&gt;&amp;nbsp; How to solve this prob.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 14:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050804#M1701884</guid>
      <dc:creator>Karan_Chopra_</dc:creator>
      <dc:date>2012-09-27T14:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050805#M1701885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export to database index will not work for your requirement because it is a permanent storage in INDX table and you are using the same id. You can use simple export and import or get/set fm or method for your purpose. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT ct_param TO ct_param to MEMORY ID 'ZZMEM123'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT ct_param FROM ct_param to MEMORY ID 'ZZMEM123'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure the variable name is same for both EXPORT and IMPORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 14:49:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050805#M1701885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-27T14:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050806#M1701886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, keep in mind that IMPORT/EXPORT Statements works only for passing variables among all internal sessions of an external session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this if it is ok according to this, then i can help you with the syntax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Marcos Carrasco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 14:56:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050806#M1701886</guid>
      <dc:creator>marcosmata</dc:creator>
      <dc:date>2012-09-27T14:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050807#M1701887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The users were using different user IDs but as INDX table does not have User Id as primary keys using export to database overwrites the entries.&lt;/P&gt;&lt;P&gt;If we use&amp;nbsp; &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;EXPORT ct_param TO ct_param to MEMORY ID 'ZZMEM123' will this work with different IDs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;What if the Users use a common SAP ID&amp;nbsp; but Different Machines. will it have individual memories or same will be overwritten as above.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Also what is SET/GET FM or any method for the same.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 16:23:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050807#M1701887</guid>
      <dc:creator>Karan_Chopra_</dc:creator>
      <dc:date>2012-09-27T16:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050808#M1701888</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;ID CTPARAM must be unique for each user id. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; EXPORT ct_param FROM ct_param&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TO DATABASE indx(ab)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID 'CTPARAM'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM wa_indx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If that is not the case then multiple user who are using same ID will get locking Error in INDX table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Sep 2012 16:48:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050808#M1701888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-27T16:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050809#M1701889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;EXPORT ct_param FROM ct_param&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TO DATABASE indx(ab) is not working here as in INDX table user Id is not primary key and data gets overwritten.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please confirm me&amp;nbsp; if &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;EXPORT ct_param TO ct_param to MEMORY ID 'CT_PARAM' will be working in this scenario.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;If the events occur in this sequence with &lt;STRONG&gt;same User ID on different machines&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&amp;nbsp; Export &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;ct_param TO ct_param to MEMORY ID '&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;CT_PARAM&lt;/SPAN&gt;'&lt;/SPAN&gt;--- &lt;STRONG&gt;user 1&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; Export &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;ct_param TO ct_param to MEMORY ID '&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;CT_PARAM&lt;/SPAN&gt;'&lt;/SPAN&gt;--- &lt;STRONG&gt;user 2&lt;/STRONG&gt;&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; Import &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;ct_param TO ct_param to MEMORY ID '&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;CT_PARAM&lt;/SPAN&gt;'&lt;/SPAN&gt;--- &lt;STRONG&gt;user 2 &lt;/STRONG&gt;( Will it overwrite statement 1 memory ID data? )&lt;/LI&gt;&lt;LI&gt;&amp;nbsp; Import &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;ct_param TO ct_param to MEMORY ID '&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;CT_PARAM&lt;/SPAN&gt;'&lt;/SPAN&gt;--- &lt;STRONG&gt;user 1 &lt;/STRONG&gt;( Will it fetch statement 2 export data? )&lt;/LI&gt;&lt;LI&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Now I this case will the User 1 have data of User 2 in memory ID 'CT_PARAM' as User 2's Export &lt;STRONG&gt;(statement 2)&lt;/STRONG&gt; might have overwritten User 1's Export &lt;STRONG&gt;(statement 1),&lt;/STRONG&gt; so will the User 1 will get User 2's memory ID data ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;removed by moderator&amp;gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Thomas Zloch&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 04:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050809#M1701889</guid>
      <dc:creator>Karan_Chopra_</dc:creator>
      <dc:date>2012-09-28T04:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050810#M1701890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Hi Karan,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with export to and import from memory ID never data will be exchanged between different users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Don't know wether i understand your problem. If 2 BAdIs run in same internal session und you would like to pass data from one to the other, just use the same class for booth BAdI&lt;/SPAN&gt;&lt;SPAN style="background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Impl. and put the data to static attributes.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Regards&lt;/SPAN&gt; René&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 05:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050810#M1701890</guid>
      <dc:creator>rene_libbert</dc:creator>
      <dc:date>2012-09-28T05:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050811#M1701891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No the USERs are different means they are different machines but &lt;STRONG&gt;SAME SAP ID &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;What will be the data in that case will this work or not&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 06:34:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050811#M1701891</guid>
      <dc:creator>Karan_Chopra_</dc:creator>
      <dc:date>2012-09-28T06:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050812#M1701892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have a look at &lt;A href="http://help.sap.com/abapdocu_70/en/ABENMEMORY_ORGANIZATION.htm"&gt;http://help.sap.com/abapdocu_70/en/ABENMEMORY_ORGANIZATION.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;memory ID depends on a user session. A second login with the same user ID is a second user session. To pass data between the 2 user sessions you have to use the DB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 06:46:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050812#M1701892</guid>
      <dc:creator>rene_libbert</dc:creator>
      <dc:date>2012-09-28T06:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Import/ Export</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050813#M1701893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Karan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What Rene has explained here is that one user having 2 separate logons have 2 different internal sessions and the data in memory is not copied.&lt;/P&gt;&lt;P&gt;Try this program by logging in form 2 different systems and look at the outputs. Check the results in Debug mode. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;DATA lv_time &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;sy-timlo.&lt;BR /&gt;lv_time&amp;nbsp; = sy-timlo.&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;EXPORT &lt;/SPAN&gt;lv_time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;TO &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;MEMORY &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'id'&lt;/SPAN&gt;.&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;IMPORT &lt;/SPAN&gt;lv_time = lv_time &lt;SPAN class="L0S52"&gt;FROM &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;MEMORY &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'id'&lt;/SPAN&gt;.&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;write &lt;/SPAN&gt;lv_time.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Shambu&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Shambu VS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Sep 2012 07:16:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-import-export/m-p/9050813#M1701893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-09-28T07:16:21Z</dc:date>
    </item>
  </channel>
</rss>

