Running automations in order

Hello, dear friends of the community. I have a question for you. I've reached the point where my apps require very little user input, as with just one click, a series of automations are triggered. The problem is that AppSheet runs them in parallel to improve efficiency. Could you suggest a way to execute them in a queue, one after the other?

It turns out that itโ€™s necessary for them to run sequentially. Have you created any method to ensure they execute in order?

0 2 105
2 REPLIES 2

You may create process and call process from a parent process ?

@Rifad  

Hey friend, sorry about my dyslexia, I must have misread something. Let me explain.

I have a bot in my app that activates to add rows to another table. I have another bot to delete rows. The thing is, I want to have 'delayed sync' enabled to avoid annoying synchronizations for the user every time they make a change. However, it happens that sometimes the user gives many orders one after the other and the bots start to execute. This makes one think (common sense) that they execute one after the other. However, this doesn't always happen like that, but they run in parallel.

The bots I configured use values from some circumstantial rows that are added to tables and then deleted at the end of the process. But if the row is deleted before (that is, if the process is executed in advance) there is no reference to execute the next step.

I would like the bots to be able to execute in order.

I had thought of a column that stores a true/false where false is "processing" and true is "completed" in that way, once the row is completed, the next process is executed. The problem is that I don't know how to do it and if what I think is possible.