on ‎2012 Jul 25 5:59 PM
I have one process chain that the last step is type of Event Data change (It is for excution of boradcast settings). In this process chain I wan to add a program for status propose. I have an issue when the event data change process fail the next step is not executed but I must have this last step executed.
Do you know how force that one step of a process chain be executed insted of the previos one has fail?
thanks in advance
Request clarification before answering.
Hi,
If ABAP code is not dependent and you want to that step executed regardless of other steps You can use OR logical operator before ABAP Code step and just after start process var.
Regards,
Avinash
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alejandro,
Harish is correct, the setting for next link is already set to "Always"
There might be some error in the broadcaster which stop all execution for debugging that is causing the process chain to get stuck.
There is a simple way to get around this :
a)Make the last two steps parallel to each other such that ZRD_CSB triggers both the event data change and the ScoreCard update.
b)You can add a wait time for the execution for the ScoreCard update.
c)Keep the time what it takes for the "Event data change" to execute (You can keep it for 60 seconds to be on the safer side ).
e) This way, ScoreCard update starts to run after 60secs regardless of state of the "Event data change" but will wait for the event data change to finish.
Do check this and let me know if it worked.
Regards,
Sahil
Yes, but doesn't work for ABAP Steps and Event data change.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Could you tell me how can I set the 'always' in the step?
thanks in advance
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
1. Right click on the existing link that connects your last but one step and the last step.
2. Click on Remove link
3. Click and drag from the last but one step to the last step, you will see a dotted line being created.
4. Once you have created the link between these two steps, you will get a dialog box with three options.
a. Always.
b. Successful
c. Errors.
5. Select the Always option and your link will turn black in color as a confirmation.
Regards,
Sahil
Hi Alejandro,
Is your next step the same regardless of the outcome ie failure / success?
If you have a different end stage then you can split the last but one step using the on "Successful" (green) link and the on "Errors" (red) link and have two specialized process chain endings.
Else, you can remove the existing link and add a new one with the status execute "Always"
The link color should change to black as a confirmation.
Hope this was helpful.
Regards,
Sahil
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Set the execution step as 'Always' for the last step that precedes the event data change process.
Br,
H
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.