<?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: IDOC ,Memory Id,problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217957#M1007813</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks i used the same approach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jul 2008 05:59:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-17T05:59:53Z</dc:date>
    <item>
      <title>IDOC ,Memory Id,problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217954#M1007810</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 have an idoc configured for sales order. This is executed from user exit of sales order. There is a z program for that. This Z program is called through an event using function module bp_event_raise and it runs in background at that time.&lt;/P&gt;&lt;P&gt;This event bp_event_raise is called in an update function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now to capture deleted record i am using function exit EXIT_SAPLVEDC_004 which is there in function module idoc_output_ordrsp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to capture the deleted records in user exit and trying to pass it to the function exit throgh memory id. But it is not working. Any clue???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shweta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 06:14:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217954#M1007810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T06:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC ,Memory Id,problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217955#M1007811</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;looks like both programmes use different process id (different external modi). EXPROT / IMPORT TO MEMORY does only work in the same process id ( external modus). Press F1 at EXPORT an follow the links for more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may use EXPORT TO DATABASE or EXPORT TO SHARED BUFFER instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;HP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 08:37:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217955#M1007811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T08:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC ,Memory Id,problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217956#M1007812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try with this Shared memory concept , it will help you.&lt;/P&gt;&lt;P&gt;export the parameter or index &lt;/P&gt;&lt;P&gt;Export program...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZP1.
 
data: werks type werks_d.
DATA: wa TYPE indx.
 
werks = '1000'.
 
EXPORT werks FROM werks
  TO SHARED MEMORY indx(xy)
  FROM wa
  CLIENT sy-mandt
  ID 'MID'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; retrieve the same in another include using the import.&lt;/P&gt;&lt;P&gt;Import program....&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZP2.
 
data: werks type werks_d.
DATA: wa TYPE indx.
 
IMPORT werks TO werks
  FROM SHARED MEMORY indx(xy)
  TO wa
  CLIENT sy-mandt
  ID 'MID'.
 
  write werks.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2008 08:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217956#M1007812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-14T08:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: IDOC ,Memory Id,problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217957#M1007813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks i used the same approach.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2008 05:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/idoc-memory-id-problem/m-p/4217957#M1007813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-17T05:59:53Z</dc:date>
    </item>
  </channel>
</rss>

