Hello friends, good day. Any expert on the topic?
I have a table of inputs, another one of productions, and another one of production components.
Productions have components that can be inputs or other productions. This would generate an infinite loop if it weren’t for the fact that the same production cannot be chosen as a component or another one of later generation, but that is perfectly handled.
What I need is that when the cost of an input changes, as expected, the cost in the components also changes. I also need it to calculate the cost of the production used as a component.
For this, I have created an update column and an action to execute the update on a set of related rows which maps the values of the columns… you already know this.
To avoid depending on manual action, I have created a bot to update the rows.
However, this works up to 3 levels of depth, after which, changes simply do not occur. It is evident that the bot stops working when it has already been updated once.
I need the bot(s) to run until there are no more changes in the tables. I have set the condition “Trigger another bots” but as I said, only three levels of nested productions are updated, any other solution?