<?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: Shared memory for different tasks? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487117#M1062200</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;U can also try to tansfer all data you need by a new fm belonging to the same function group of fm Z_TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Sep 2008 13:31:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-12T13:31:08Z</dc:date>
    <item>
      <title>Shared memory for different tasks?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487113#M1062196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i call a rfc function module in threading mode (task):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'Z_TEST'
STARTING NEW TASK lv_taskname
DESTINATION lv_destination_func
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;destination is the same system (it has to be a rfc fm to use the "starting new task" clause).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to share memory (internal table, application log) beetween the program and the called function module 'Z_TEST', but i don't know how!? the application log and the global parameters in function group are not known in called function module 'Z_TEST'!!??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 12:37:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487113#M1062196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T12:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Shared memory for different tasks?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487114#M1062197</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;The calling program and called function belong to different program so they can't see the global data, if you need it u should transfer them by interface of fm but why u need to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 12:45:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487114#M1062197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T12:45:45Z</dc:date>
    </item>
    <item>
      <title>Re: Shared memory for different tasks?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487115#M1062198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is, in main program i create a application log and transfer the log_handle to Z_TEST. &lt;/P&gt;&lt;P&gt;There, i want to add messages into this application log, but i don't get access to it, i got the message that the application log doesn't exist..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 12:59:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487115#M1062198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T12:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: Shared memory for different tasks?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487116#M1062199</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;Before calling the Z_TEST , please save the application log &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; BAL_DB_SAVE_PREPARE (prepare to save)&lt;/P&gt;&lt;P&gt; BAL_DB_SAVE (save)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in Z_TEST use the handle to open log and then use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAL_LOG_MSG_ADD (add messages)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May this will be help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 13:16:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487116#M1062199</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2008-09-12T13:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Shared memory for different tasks?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487117#M1062200</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;U can also try to tansfer all data you need by a new fm belonging to the same function group of fm Z_TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 13:31:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/shared-memory-for-different-tasks/m-p/4487117#M1062200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T13:31:08Z</dc:date>
    </item>
  </channel>
</rss>

