Hello, I have a question about several processes within a process node:
I have 3 products (black, red, yellow) with different delay times.
I have assigned a boolean feature to them in the Product Properties and then process them with Reserve Product and Filters.
If you already use different product types, you don’t need a property to differentiate them : you can get the type of the product which entered with “ProductIn.ProductType.Name”
Here is an example with a switch statement, but you could also do it with an if statement:
if you only need to change the delay value according to the product type, you could also add a property to each product and use it in your delay by setting its TimeSource on “Expression”
Perfect, the 2nd case with the switch statement is exactly what i am looking for. because i have to insert a setup time within the process for a yellow part.
Many thanks