I started using a global list for my model, but I am not sure if there are better ways to approach my modeling problem (process flow). Below are some details:
1) There is a scheduled list of lots to be processed that arrive over time (can be at the same time)
2) When the lot arrived, it is added to a global list
3) The list is evaluated by sorting lots by priority and creation time.
4) For each lot, check if both operator and tool are available, if so, select it for processing
5) Each lot can require a different operator and tool type
I am trying to achieve this using global list but ran into some questions.
Q1) When multiple lots are added at the same time, how do I evaluate the list only after all lots are added?
Q2) I am using event source to create the puller token when list content changes. This cause 3 puller tokens when 3 lot arrive at the same time. Are there other options?
Q3) Are there other better approaches to what I am trying to do?
Thanks,
Hai