cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

process event after event data change

Former Member
0 Likes
727

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

Accepted Solutions (0)

Answers (6)

Answers (6)

former_member182226
Contributor
0 Likes

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

Former Member
0 Likes
Former Member
0 Likes

Hi,

If it doesn't prompt for successful/error on execution, then it means that that step will always occur despite the previous step's execution.

Br,

H

Former Member
0 Likes

Hi A

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

Former Member
0 Likes

Yes, but doesn't work for ABAP Steps and Event data change.

Former Member
0 Likes

Could you attach a screen shot of the process chain for better understanding of the ABAP steps and event data change?

Former Member
0 Likes

Hi Could you tell me how can I set the 'always' in the step?

thanks in advance

Former Member
0 Likes

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

Former Member
0 Likes

Hi A

Former Member
0 Likes

Hi,

Set the execution step as 'Always' for the last step that precedes the event data change process.

Br,

H