<?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: EXPORT  MEMORY and IMPORT MEMORY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391683#M1994769</link>
    <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;abaplearner&lt;/SPAN&gt; Okay, so now you understand how much important is to analyze what the actual problem is. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you to explain more about the context. So you do a CALL TRANSACTION. It means that EXPORT TO MEMORY/IMPORT FROM MEMORY is sufficient. Now &lt;STRONG&gt;you must find a reproducible case when it fails, and analyze why&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;NB: indicating the name of custom object ("ZDELIVERY_PUBLISH") is useless, instead you should indicate what BAdI Definition it implements.&lt;/P&gt;</description>
    <pubDate>Mon, 16 Aug 2021 08:07:56 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2021-08-16T08:07:56Z</dc:date>
    <item>
      <title>EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391663#M1994749</link>
      <description>&lt;P&gt;I am working on object which executes in background and consists of &lt;STRONG&gt;EXPORT IT_BSEG_FIN FROM IT_BSEG_FIN TO MEMORY ID 'ZLV_FB01'.&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;in one program and &lt;STRONG&gt;IMPORT IT_BSEG_FIN = IT_BSEG_FIN FROM MEMORY ID 'ZLV_FB01'&lt;/STRONG&gt;. &lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;FREE MEMORY ID 'ZLV_FB01'.&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;In another program. Most of times the values from&lt;STRONG&gt; &lt;/STRONG&gt;&lt;STRONG&gt;IT_BSEG_FIN&lt;/STRONG&gt; are passed from one program to other program and then the next code is executed.&lt;/P&gt;
  &lt;P&gt;But some times the values are not passed and &lt;B&gt;IT_BSEG_FIN&lt;/B&gt; is blank&lt;B&gt; and &lt;/B&gt; next auto program fails .&lt;/P&gt;
  &lt;P&gt;I am looking for solution or alternative.&lt;/P&gt;
  &lt;P&gt;//Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 10:31:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391663#M1994749</guid>
      <dc:creator>former_member605939</dc:creator>
      <dc:date>2021-08-04T10:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391664#M1994750</link>
      <description>&lt;P&gt;Share memory object is a good option : &lt;/P&gt;&lt;P&gt;&lt;A href="https://blogs.sap.com/2015/02/19/how-to-use-shared-object-memory-and-sap-memory-to-share-the-objects-for-processing-in-sap-with-an-example/" target="test_blank"&gt;https://blogs.sap.com/2015/02/19/how-to-use-shared-object-memory-and-sap-memory-to-share-the-objects-for-processing-in-sap-with-an-example/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Otherwise, you could simply do a SingleTon Class :&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.sap.com/questions/12988109/how-do-we-use-singleton-in-oo-abap-can-someone-ple.html" target="test_blank"&gt;https://answers.sap.com/questions/12988109/how-do-we-use-singleton-in-oo-abap-can-someone-ple.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;(or worst, a group function)&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 11:04:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391664#M1994750</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-08-04T11:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391665#M1994751</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;if you are using more than one server instance, consider to use export to database. Don't forget to execute "commit work" after the export.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 12:06:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391665#M1994751</guid>
      <dc:creator>ThorstenHoefer</dc:creator>
      <dc:date>2021-08-04T12:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391666#M1994752</link>
      <description>&lt;P&gt;First, try to reproduce the exact case to make it happen all the time, then analyze what happens exactly, and compare to the case which works. What is different?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 14:56:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391666#M1994752</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-08-04T14:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391667#M1994753</link>
      <description>&lt;P&gt;Have you checked this in foreground processing? Is this issue reprodeucable in foreground? Often it helps if you can reproduce in foreground.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Aug 2021 16:07:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391667#M1994753</guid>
      <dc:creator>former_member576422</dc:creator>
      <dc:date>2021-08-04T16:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391668#M1994754</link>
      <description>&lt;P&gt;I checked the foreground processing many times but, not even single time process is stooped.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Aug 2021 05:34:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391668#M1994754</guid>
      <dc:creator>former_member605939</dc:creator>
      <dc:date>2021-08-05T05:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391669#M1994755</link>
      <description>&lt;P&gt;the proposal of  &lt;SPAN class="mention-scrubbed"&gt;xtrnhfo&lt;/SPAN&gt; could be the good one, and the Share Memory Object could solve this possibility. Did you read it ? &lt;/P&gt;</description>
      <pubDate>Thu, 05 Aug 2021 05:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391669#M1994755</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-08-05T05:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391670#M1994756</link>
      <description>&lt;P&gt;We have single instance. Which one is better for output  &lt;STRONG&gt;1&lt;/STRONG&gt;) &lt;STRONG&gt;EXPORT  TO MEMORY ID &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; 2) &lt;/STRONG&gt;&lt;STRONG&gt;export to database&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3) based on class&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Export to memory is missing the control to get data( i implemented ). Does point no 2 and 3 can also skip the data.&lt;/P&gt;&lt;P&gt;Which procedure is secure to get updated every time.Which should be implemented  ?&lt;/P&gt;&lt;P&gt;//Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 06 Aug 2021 11:42:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391670#M1994756</guid>
      <dc:creator>former_member605939</dc:creator>
      <dc:date>2021-08-06T11:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391671#M1994757</link>
      <description>&lt;P&gt;Hi sir,&lt;/P&gt;&lt;P&gt;I tried the way you suggested  EXPORT IT_BSEG_FIN TO DATABASE INDX(PD) ID 'ZPGI2'.&lt;STRONG&gt;  &lt;/STRONG&gt;,but this is executed in &lt;/P&gt;&lt;P&gt;badi impmentation . and getting the message  TO DATABASE not supported in OO CONCEPT. &lt;/P&gt;&lt;P&gt;I have to implement in BADI implementation "IF_EX_DELIVERY_PUBLISH~PUBLISH_AFTER_SAVE"&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 04:38:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391671#M1994757</guid>
      <dc:creator>former_member605939</dc:creator>
      <dc:date>2021-08-13T04:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391672#M1994758</link>
      <description>&lt;P&gt;When you will make some effort to use the Shared memory object, maybe your problem will be solved &lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 05:54:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391672#M1994758</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-08-13T05:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391673#M1994759</link>
      <description>&lt;P&gt;ok sir. i tried export/import memory id. not successful.&lt;/P&gt;&lt;P&gt;then EXPORT IT_BSEG_FIN TO DATABASE INDX(PD) ID 'ZPGI2 not supported in my case.&lt;/P&gt;&lt;P&gt;Now will implement Shared memory object. Is it also trial ? Problem arises for all cases or may be the code issue can be there?&lt;/P&gt;&lt;P&gt;Or background values transferring is not safe.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 07:07:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391673#M1994759</guid>
      <dc:creator>former_member605939</dc:creator>
      <dc:date>2021-08-13T07:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391674#M1994760</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;abaplearner&lt;/SPAN&gt; did you find a reproducible case which fails all the time? and one which succeeds all the time?&lt;/P&gt;</description>
      <pubDate>Fri, 13 Aug 2021 08:08:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391674#M1994760</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-08-13T08:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391675#M1994761</link>
      <description>&lt;P&gt;No. Not able find the single case. even tries the process more than 200 times.&lt;/P&gt;&lt;P&gt;But i traced the point by values inserting into z log table and found the values are captured in &lt;STRONG&gt;EXPORT IT_BSEG_FIN FROM IT_BSEG_FIN TO MEMORY ID 'ZLV_FB01'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;but the values are not captured in&lt;B&gt; &lt;/B&gt;&lt;STRONG&gt;IMPORT IT_BSEG_FIN = IT_BSEG_FIN FROM MEMORY ID 'ZLV_FB01'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Now I am trying on Shared memory object. I have implement it. but in transaction &lt;STRONG&gt;SHMA  &lt;/STRONG&gt;there one check box creation&lt;STRONG&gt; "Aut. Area Creation"  &lt;/STRONG&gt;What is the significance of it. Some of examples check box is marked yes and some are blank. should i mark tick or keep it blank ?&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 07:34:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391675#M1994761</guid>
      <dc:creator>former_member605939</dc:creator>
      <dc:date>2021-08-14T07:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391676#M1994762</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;abaplearner&lt;/SPAN&gt; In classes, I think that the old syntax is not accepted. Use the explicit naming of data cluster objects (=):&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT the_name_you_want = IT_BSEG_FIN TO DATABASE INDX(PD) ID 'ZPGI2'.
IMPORT the_name_you_want = IT_BSEG_FIN FROM DATABASE INDX(PD) ID 'ZPGI2'.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 14 Aug 2021 13:48:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391676#M1994762</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-08-14T13:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391677#M1994763</link>
      <description>&lt;P&gt;It's good that you have been able to get a first trace of the problem. Now you could continue analyzing in depth the origin (which object is it, can you reproduce with exactly the same context, does it happen after executing something in mass, is it due to different user, etc.)&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 13:52:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391677#M1994763</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-08-14T13:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391678#M1994764</link>
      <description>&lt;P&gt;Thanks for guidance.&lt;/P&gt;&lt;P&gt;as you suggested i have used the  statements:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT the_name_you_want = IT_BSEG_FIN TODATABASE INDX(PD)ID'ZPGI2'.

IMPORT the_name_you_want = IT_BSEG_FIN FROMDATABASE INDX(PD)ID'ZPGI2'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and after that  this statement is also required &lt;STRONG&gt;DELETE FROM DATABASE INDX(PD) ID 'ZPGI2'&lt;/STRONG&gt; ?&lt;/P&gt;&lt;P&gt;is it ? &lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 15:24:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391678#M1994764</guid>
      <dc:creator>former_member605939</dc:creator>
      <dc:date>2021-08-14T15:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391679#M1994765</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;abaplearner&lt;/SPAN&gt; Yes, well seen!&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 15:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391679#M1994765</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2021-08-14T15:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391680#M1994766</link>
      <description>&lt;P&gt;How much process using this memory id 'ZLV_FB01' are running at same time ?&lt;/P&gt;&lt;P&gt;If you have 2 process running at same time, using the same memory id, then you may have a problem (If I am not wrong).&lt;/P&gt;</description>
      <pubDate>Sat, 14 Aug 2021 21:00:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391680#M1994766</guid>
      <dc:creator>chaouki_akir</dc:creator>
      <dc:date>2021-08-14T21:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391681#M1994767</link>
      <description>&lt;P&gt; I implemented the login &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT the_name_you_want = IT_BSEG_FIN TODATABASE INDX(PD)ID'ZPGI2'.

IMPORT the_name_you_want = IT_BSEG_FIN FROMDATABASE INDX(PD)ID'ZPGI2'.

 DELETE FROM DATABASE INDX(PD) ID 'ZPGI2' &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;still it is not passing the values . The actual process is when vl02n pgi button is pressed at that time , we implemented the badi "ZDELIVERY_PUBLISH" that is it will capture the delivery number and the accounting number of the stock less movement then in this badi we used the call transaction 'Zreport' which will do some calculations.   but the point is badi is capturing the delivery number and accounting number but in call transaction  'Zreport' the values are not passed, hence next processing is not done . &lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 07:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391681#M1994767</guid>
      <dc:creator>former_member605939</dc:creator>
      <dc:date>2021-08-16T07:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: EXPORT  MEMORY and IMPORT MEMORY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391682#M1994768</link>
      <description>&lt;P&gt;You are using always the same method and you have the same result. Where is the suprise ?  Honestly, did you try another method? &lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 07:58:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/export-memory-and-import-memory/m-p/12391682#M1994768</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2021-08-16T07:58:54Z</dc:date>
    </item>
  </channel>
</rss>

