<?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 1 Program with Multiple Variants in Background with Parallel Processing.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/1-program-with-multiple-variants-in-background-with-parallel-processing/m-p/2858091#M670156</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I need your help. Here is what I want to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Program 'TEST1' with different different variants. I want to create New Program 'NEW' which execute 'TEST1' with VARIANTS1, 'TEST1' with VARIANTS2, 'TEST1 with VARIANTS3'.... and so on. Also I want to make sure that once I execute 'NEW' Program, all 'TEST1' with different VARIANTS needs to execute in back ground in parallel processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody give me step by step instructions / code for the same ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Oct 2007 18:32:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-04T18:32:37Z</dc:date>
    <item>
      <title>1 Program with Multiple Variants in Background with Parallel Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/1-program-with-multiple-variants-in-background-with-parallel-processing/m-p/2858091#M670156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;I need your help. Here is what I want to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Program 'TEST1' with different different variants. I want to create New Program 'NEW' which execute 'TEST1' with VARIANTS1, 'TEST1' with VARIANTS2, 'TEST1 with VARIANTS3'.... and so on. Also I want to make sure that once I execute 'NEW' Program, all 'TEST1' with different VARIANTS needs to execute in back ground in parallel processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody give me step by step instructions / code for the same ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 18:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/1-program-with-multiple-variants-in-background-with-parallel-processing/m-p/2858091#M670156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T18:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: 1 Program with Multiple Variants in Background with Parallel Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/1-program-with-multiple-variants-in-background-with-parallel-processing/m-p/2858092#M670157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanket,&lt;/P&gt;&lt;P&gt;               U can call a new program using the submit statement followed by variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT NEW USING SELECTION-SET 'variant1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can get the variants for a program from table VARID and tvarv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For abckground execution.&lt;/P&gt;&lt;P&gt;1.CALL FM JOB_OPEN by passing the job name and get the job number.&lt;/P&gt;&lt;P&gt;2. SUBMIT NEW USING SELECTION-SET 'variant1&lt;/P&gt;&lt;P&gt;                          VIA job_name NUMBER job_number.&lt;/P&gt;&lt;P&gt;3. CALL FM JOB_CLOSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sampath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 19:13:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/1-program-with-multiple-variants-in-background-with-parallel-processing/m-p/2858092#M670157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T19:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: 1 Program with Multiple Variants in Background with Parallel Processing..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/1-program-with-multiple-variants-in-background-with-parallel-processing/m-p/2858093#M670158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sampath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I select two variants, will both program run parallel ?? and dont i have to write JOB_OPEN,SUBMIT,JOB_CLOSE for each variant. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have One Program with 50 Variants. What I want is to run this One program with 50 variants in background, in parallel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can provide me code, would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Oct 2007 20:01:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/1-program-with-multiple-variants-in-background-with-parallel-processing/m-p/2858093#M670158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-04T20:01:57Z</dc:date>
    </item>
  </channel>
</rss>

