<?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: Performace tuning: how to pass data between different batch job programs? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443014#M826851</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But when the job is finished, the memory is freed automatically. i have tried use ABAB Memory, but they can not get data from each other.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Feb 2008 08:01:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-15T08:01:28Z</dc:date>
    <item>
      <title>Performace tuning: how to pass data between different batch job programs?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443009#M826846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    now i have one problem about performance tuning using threading in SAP programs: split one big program into two programs - one is main program and the other is sub program. using batch jobs, we can submit multi jobs of sub program at the same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    does anybody know how to pass data between different batch jobs? I don't want to use temp files. can ABAP memory can implement this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 07:52:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443009#M826846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T07:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Performace tuning: how to pass data between different batch job programs?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443010#M826847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ABAP memory can be helpful here, yes. Restriction: all jobs have to be executed in the same SAP instance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 07:55:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443010#M826847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T07:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performace tuning: how to pass data between different batch job programs?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443011#M826848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wei,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Yes we can transfer the data by using &lt;/P&gt;&lt;P&gt;SAP Memory OR ABAP Memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:  V_count TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  V_count = 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT  itab.&lt;/P&gt;&lt;P&gt; IF v_count EQ 25.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here For every batch job &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  EXPORT data TO MEMORY ID 'ABC'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    JOB_OPEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   JOB_SUBMIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   JOB_CLOSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN your 2nd program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT data FROM MEMORY IF 'ABC'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; FREE memory if .---When you free the memory you will get recent data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 08:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443011#M826848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T08:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Performace tuning: how to pass data between different batch job programs?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443012#M826849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could also try EXPORT .... TO DATABASE INDX(xx) .. in your first program&lt;/P&gt;&lt;P&gt;IMPORT ... FROM DATABASE INDX(xx) in your next.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will be slower as it is reading and writing to a cluster database, but you have a permanent copy of the data if you need to rerun the second part. SAP use this technique in HR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 10:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443012#M826849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T10:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Performace tuning: how to pass data between different batch job programs?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443013#M826850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another idea is to make use of Shared Memory Objects...&lt;/P&gt;&lt;P&gt;[http://help.sap.com/saphelp_sm32/helpdata/en/ae/92d93f130f9215e10000000a155106/frameset.htm]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Feb 2008 10:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443013#M826850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-13T10:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Performace tuning: how to pass data between different batch job programs?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443014#M826851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But when the job is finished, the memory is freed automatically. i have tried use ABAB Memory, but they can not get data from each other.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 08:01:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443014#M826851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T08:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Performace tuning: how to pass data between different batch job programs?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443015#M826852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 02:20:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/performace-tuning-how-to-pass-data-between-different-batch-job-programs/m-p/3443015#M826852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T02:20:54Z</dc:date>
    </item>
  </channel>
</rss>

