Car_Lot.fsm Hey all, I am working on a outbound car lot simulation, where cars come with their destination predefined , they are staged in multiple lanes. Where lanes hold the cars going to same destination and truck going to same destination will load the cars and go. All lanes assigned destination dynamically based on the car, and car will go a lane with same destination if it has space else to a new lane and set its destination as same. In this model handled by label type. Now When there is no space for car to go they are sent to a buffer space "Queue2" in the model. Now what I want to do is have a method where when lane gets empty it pulls the cars from buffer based on earlier defined lane assignment rules. Since I am using floor storage to simulate lane and it already has pull logic I'm stuck on how to make it pull. Presently any car going buffer is stuck there.