find amount of items in queue by label

find amount of items in queue by label

larkint8328
Not applicable
161 Views
2 Replies
Message 1 of 3

find amount of items in queue by label

larkint8328
Not applicable

[ FlexSim 23.0.3 ]

I am trying to make an order system that has 3 different queues. The boxes in the queue has a label(Silo) to assign to its queue and an order label(Skid). for the order picking to begin the quantity of the order should be present so for example

order 1 has 4 boxes all in one queue. how can I sift through the queue until all 5 are found? I have tried some custom code but was never able to get what I needed, what is the best way to go about finding an amount of a label in a queue?

0 Likes
Accepted solutions (1)
162 Views
2 Replies
Replies (2)
Message 2 of 3

joerg_vogel_HsH
Mentor
Mentor

It is an exercise to explore features of Lists and SQL.
https://docs.flexsim.com/en/23.0/Reference/Tools/GlobalLists/FunctionalReference/FunctionalReference...

section headline > Using the SELECT clause.

There are other mechanism to evaluate values of fields in a list for example by clause SUM(..). Because Lists correlates strongly with SQL you find articles both in manual and many here in this forum. The manual links for a better understanding of SQL as a language to www.w3schools.com/sql/ .

0 Likes
Message 3 of 3

jason_lightfootVL7B4
Autodesk
Autodesk
Accepted solution

You can push the items to a list and then look for quantities you need for the order.

Take a look at the Opportunistic Combiner example which uses a product type to define the quantities, which you could change to instead consider order quantities.

0 Likes