Good morning community!
I have a logic failure that require some assistance please. I use Optimoroute to plan and schedule our deliveries. at day end, read the routes (iterate), then iterate the orders per route, and then determine completion status. at this point i update an offline record with status. then i want to read my merchants into a list, search for all the orders per merchant, and then create billing bundles per merchant for Zoho books.
Each part of this process works well, but i would like to string this into a single process. this is where i need assistance, as i need to take the first part, which can create up to three bundles, and then bring everything together as a single process of executions, as the bundle creation process for Zoho books is another set of iterations.
I am a little lost here. I tried making the Optimoroute process a webhook call and return, but as i have no idea how many orders are delivered per day, or how many routes per day, i have not figured out how to keep a counter going so that i can do a webhook return upon completion. at the moment, the webhook returns happens on the 1st iteration.
Just to Summarise:
Process 1:
Read Optimoroute for routes;
Iterate each route for orders;
Aggregate all the orders into a single array and then get Optimoroute to provide feedback on the orders;
Iterate the array and update offline data store record.
Process 2:
Read our merchant list (as we don’t know which merchants scheduled deliveries for the day);
Read the offline data store records, and create bundles per merchant for deliveries done;
Aggregate the records per merchant and create a single Zoho invoice per merchant for the day.
It works if i create two seperate scenarios and run them on timers.
Please share screenshots of relevant module fields and filters in question? It would really help other community members to see what you’re looking at.
You can upload images here using the Upload icon in the text editor:
2. Scenario blueprint
Please export the scenario blueprint file to allow others to view the mappings and settings. At the bottom of the scenario editor, you can click on the three dots to find the Export Blueprint menu item.
(Note: Exporting your scenario will not include private information or keys to your connections)
Please provide the output bundles of the modules by running the scenario, then click the white speech bubble on the top-right of each module, save the bundle contents in your text editor as a bundle.json file, and upload it here into this discussion thread.
Providing the output bundles will allow others to replicate what is going on in the scenario even if they do not use the external service.
Following these steps will allow others to assist you here. Thanks!
The Optimoroute tools is a private tool (have not had the time to document and promote it yet). To replicate the scenarios one could easily use the data store functionality.
What i am trying to understand, given the nature of MAKE and the manner in which it processes the scenario, if it is possible to have several iterators and aggregators running in a scenario, with ONE iterator NOT aggregating, and still control the process flow. Where my current logic breaks, is the update of the orders at the end of process 1 (optimoroute).
It seems that without introducing an aggregator into process 1, this is not possible.
Summary:
If the scenario contains an open iterator, one have to “close” the iterator with an aggregator before trying to continue with the process.