Hello,
I'm trying to build an assembly line with several processes. First I give you an overview about my model:
First of all, orders are generated with individual order numbers and individual types of items/products (this is not part of the example model below).
Each order has two components which should be assembled. Different types of ComponentTwo are delivered in a tote to the assembly station (every ComponentTwo has an individual OrderNo and Type according to the generated orders). As soon as they arrive at the assembly station, they should trigger the process to produce the corresponding ComponentOne. If ComponentOne is finished it should get labels with the type and orderNo. After this, ComponentOne has to be transported to the assembly station. Now an Operator must search for the ComponentTwo in the tote matching the ComponentOne which has just arrived in that moment. The last step is to join them together and send them to the next process.
Now my Question(s):
How can I get the values from the labels of ComponentTwo in the tote? I don´t know how to reference ComponentTwo both for triggering the production of ComponentOne and for finding it once ComponentOne is finished.
How can I manipulate the Combiner (assembly station) that it is looking for matches of the OrderNo and Types from both Components?