Execute process for same object sequentially

Hi, I am currently preparing a process which executes whenever there is any change happens to the ADAccount's CN or SAMAccountName, STatus etc.

But issue is the there are many times, there will be multiple process gets triggered for same object withing few seconds and while processing them, they all execute at a same time. So sometimes the latest updates does not flow to the target.

Please suggest how can I add a wait node so that they can execute sequentially.

Parents Reply Children
  • I think you need to use a check SQL column task for that in your process. In this SQL you can use the name of the process via myChain.Name for your comparison and the GenProcID to separate to chains by originating change.

    You find a sample of such a check job in the process chain VI_Person_Insert/Update_AutoAssignRessource. The process step would be Check exist dependent Jobs.

    You have to update the SQL condition a little bit to your use-case of course.