Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Dependencies between BOBF determination

Former Member
0 Likes
676

Hello,

is it possible to implement an dependency like this?

Determination A has to be execute after Determination B was successful executed for a BO node.

Thank you

Christian

Hello,

is it possible to implement an dependency like this?

Determination A has to be execute after Determination B was successful executed for a BO node.

Thank you

Christian

1 REPLY 1
Read only

former_member190794
Active Participant
0 Likes
553

Hello Christian,

you can just maintain Determination B as a predetermination of Determination A. Of course, determination A is only executed if also its triggering condition is fulfilled.

So if you would like to always execute determination A as soon as determination B is executed (independent if the triggering condition of A has been matched), you might think of refactoring the logic of A into a method that is directly invoked out of determination B.

As alternative to the last option you could simulate changes in determination B that will ensure the triggering of determination A by the help of io_modify->notify_change( ... ). However, this last option very implicit and thus not recommended.

Best regards

Tilmann