In my model, I created a Process Flow that gets order labels from a global table.
Each token = one order (with labels like NumBobbins, Priority).
I have a queue “Bobbins” with bobbin objects (each has a BobbinType).
I want to transfer bobbins from Bobbins to Staging based on the order’s NumBobbins.
Example: if NumBobbins = 3, then move 3 bobbins with the same BobbinType.
Select bobbins with the minimum Priority first.
The bobbins moved should be linked to the order and take on the order’s labels.
My question:
I tied the token’s Priority label as a parameter, but is this the correct way for it to work with the Optimizer?