<?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>Question Re: Repeat a process step in a process chain automatically after error? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158815#M2908029</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I set up the "error path" with a repeat step. However, the error path is not executed.&lt;/P&gt;&lt;P&gt;The system always notifies a Termination but the process step (ABAP) in the process chain did not get this status... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The analysis of chain ZXY showed that&lt;/P&gt;&lt;P&gt;process Z_ABAP SEL_DEL1 was cancelled.&lt;/P&gt;&lt;P&gt;However, the process has a metachain or successors that&lt;/P&gt;&lt;P&gt;should be executed when there are errors. Run&lt;/P&gt;&lt;P&gt;4ND9Q5ZEDUMN61SPC043FDBTN did not finish due to termination.&lt;/P&gt;&lt;P&gt;If a metachain exists, it was not informed about the error.&lt;/P&gt;&lt;P&gt;Should run of chain ZDEL and possible&lt;/P&gt;&lt;P&gt;metachain be continued&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a system setting? Or what is going on? The chain where the error path is setup is called by another chain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and best regards,&lt;/P&gt;&lt;P&gt;Axel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Oct 2011 12:21:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-10-04T12:21:07Z</dc:date>
    <item>
      <title>Repeat a process step in a process chain automatically after error?</title>
      <link>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaq-p/8158810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got a process chain with selective deletion. From time to time the selective deletion "fails" as another load is running and a lock cannot be set. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this situation I would like to re-try 5 min later. How do I set this up? Do I need another ABAP prg. process variant (as I can't insert the same again) and connect this with the "unsuccesful" link + debug loop 350 sec?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or is there any other / better way to accomplish this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and best regards,&lt;/P&gt;&lt;P&gt;Axel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 09:19:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaq-p/8158810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-07T09:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: Repeat a process step in a process chain automatically after error?</title>
      <link>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158811#M2908025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Axel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you have few more ways to accomplish the requirement mentioned by you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) You can write an ABAP to check if the loads are running in the target and then only start the selective deletion once the load is completed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) You can also include the loading step which loads the data to the target in the chain before the selective deletion step. Link the steps in such a way that whenever the load is successful, then only selective deletion can start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) You can also try including the process for running the load to the target. Create an event which will be raised once the load is complete. And this event can be captured in the other chain where selective deletion is required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Pawan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 10:21:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158811#M2908025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-07T10:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Repeat a process step in a process chain automatically after error?</title>
      <link>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158812#M2908026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Axel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way is add Debug loop for selective deletion step in your process chain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before giving wait time, analyse how much is required to finish the other load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 13:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158812#M2908026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-07T13:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Repeat a process step in a process chain automatically after error?</title>
      <link>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158813#M2908027</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;Debug loop will be a good option but make sure that you set sufficient time interval so that overlap doesn't come again. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Durgesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 13:54:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158813#M2908027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-07T13:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Repeat a process step in a process chain automatically after error?</title>
      <link>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158814#M2908028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Axel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you already know that it will be work if repeated after X seconds, You need not go with "unsuccesful" link + debug loop 350 sec , just go with successful link + Debug loop for the selective deletion step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Sep 2011 08:11:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158814#M2908028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-16T08:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: Repeat a process step in a process chain automatically after error?</title>
      <link>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158815#M2908029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I set up the "error path" with a repeat step. However, the error path is not executed.&lt;/P&gt;&lt;P&gt;The system always notifies a Termination but the process step (ABAP) in the process chain did not get this status... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The analysis of chain ZXY showed that&lt;/P&gt;&lt;P&gt;process Z_ABAP SEL_DEL1 was cancelled.&lt;/P&gt;&lt;P&gt;However, the process has a metachain or successors that&lt;/P&gt;&lt;P&gt;should be executed when there are errors. Run&lt;/P&gt;&lt;P&gt;4ND9Q5ZEDUMN61SPC043FDBTN did not finish due to termination.&lt;/P&gt;&lt;P&gt;If a metachain exists, it was not informed about the error.&lt;/P&gt;&lt;P&gt;Should run of chain ZDEL and possible&lt;/P&gt;&lt;P&gt;metachain be continued&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a system setting? Or what is going on? The chain where the error path is setup is called by another chain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and best regards,&lt;/P&gt;&lt;P&gt;Axel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Oct 2011 12:21:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158815#M2908029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-04T12:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Repeat a process step in a process chain automatically after error?</title>
      <link>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158816#M2908030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What a pain ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems that you need to add the process chain where ABAP sends status to transaction RSPCM and then schedule a monitor batch run to have the process chain process further if an error occurs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover the process chain gets status red even if at the "error path" all steps process succesfull. I am pretty sure our external scheduling tool won't like it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So overall I really appreciate if SAP could have on a process an simply auto repeat in 5 min when failing, stop after 3 re-tries feature ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Axel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2011 14:16:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/repeat-a-process-step-in-a-process-chain-automatically-after-error/qaa-p/8158816#M2908030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-10T14:16:01Z</dc:date>
    </item>
  </channel>
</rss>

