question

Nick V2 avatar image
0 Likes"
Nick V2 asked anthony.johnson edited

Warehousing - Racking (Zone ID & Address Schemes)

Hi All,

First thanks a lot for upgrading the warehousing functionalities in FlexSim, works great!

I have a question on how to use process flow to store items in the right zone. I have enclosed the model for further details.

warehousingquestion.jpg

Short explanation:

I am creating three different items and give them different labels (product 1, product 2, product 3)

Based on this product label, I want to transport them them to the right 'Zone IDs' (tab in storage system menu).

How do I make this happen using process flow?

For product 1 this thus means that it can be stored in rack 2A and 3A. Put-away of these items can be anywhere in both racks, and if one of the racks is full it should store in the other rack (part of the same zone).

Thanks in advance for your help!

warehousing.fsm

---

(One follow-up question with less priority: how can I build in a different loop in process flow covering: "if storage in all zones is full that the item is stored elsewhere")

FlexSim 19.2.1
process flowrackwarehousezone
warehousing.fsm (70.8 KiB)
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

anthony.johnson avatar image
0 Likes"
anthony.johnson answered anthony.johnson edited

Use labels on the slots, which you appear to have already started. In your model you painted the label "Type" on to each of the racks with the respective values 1, 2, and 3. Then you use a pick option in the Assign Labels activity (Warehousing > Find a Slot) to find a slot based on the following query:

WHERE Type == $1.product AND slot.hasSpace($1.item)

The default settings of this option are that $1 is the token. Thus, the option will find a slot whose "Type" label matches the token's "product" label, and where the slot has space to store the item.

Once the activity has found the slot, it assigns a rack label corresponding to that slot's rack, and then assigns the item to that slot (a custom code activity that uses the pick option in Control > Warehousing > Assign Slot (Direct)).

warehousingwithfindslot.fsm


· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.