change processes order

Hello everyone,

I created a process triggered by the insert in the table PersonInOrg. This process must update a value in the table PersonHasESet, in the record referred to the assignment of a system role inherited from the assignment of the business role (the one that triggers the process). 

The process doesn't work as the DB queue task that assigns inherited system roles waits for my process, so my custom process doesn't find PersonHasESets.

How can I change the order these process are ran?

Thank you,
Giuseppe

Parents
  • First, a flag at the process step tells the system that it should not wait for this step during DB queue calculations. You might want to set that.

    Second, you can probably reverse your processing order by moving your process to be fired by the change at PersonHasEsets instead of PersonInOrg.

Reply
  • First, a flag at the process step tells the system that it should not wait for this step during DB queue calculations. You might want to set that.

    Second, you can probably reverse your processing order by moving your process to be fired by the change at PersonHasEsets instead of PersonInOrg.

Children